SQLC overrides Bool type PostgreSQL
php小编西瓜为您带来关于SQLC覆盖Bool类型PostgreSQL的介绍。SQLC是一个强大的SQL查询构建器,它可以方便地与各种数据库进行交互。在使用PostgreSQL时,SQLC提供了对Bool类型的覆盖支持,使得我们可以更灵活地处理和查询布尔值。通过SQLC,我们可以轻松地在PostgreSQL中进行布尔值的增删改查操作,提高开发效率并简化代码编写过程。无论是初学者还是有经验的开发者,都可以通过SQLC轻松地操作PostgreSQL中的布尔类型数据。
问题内容
我正在使用 sqlc,并且我的 yaml 配置文件包含 postgresql 的以下类型覆盖:
gen: go: emit_json_tags: true package: "hmdb" out: "hmdb" overrides: - db_type: "hstore" nullable: true go_type: "github.com/jackc/pgtype.hstore" - db_type: "text" nullable: true go_type: import: "gopkg.in/guregu/null.v4" package: "null" type: "string" - db_type: "timestamptz" nullable: true go_type: import: "gopkg.in/guregu/null.v4" package: "null" type: "time"
这里的一切都有效,但如果我添加:
- db_type: "bool" nullable: true go_type: import: "gopkg.in/guregu/null.v4" package: "null" type: "bool"
我没有得到预期的结果。我也尝试过 boolean
和 bit
无论有没有 nullable
都无济于事。
我在这里定义了一个更新查询:
-- name: setuser :one update users set username = coalesce(sqlc.narg(username), username), email = coalesce(sqlc.narg('email'), email), phone = coalesce(sqlc.narg('phone'), phone), password = coalesce(sqlc.narg('password'), password), mfatoken = coalesce(sqlc.narg('mfatoken'), mfatoken), active = coalesce(sqlc.narg('active'), active) where id = $1 returning *;
但生成的结构如下所示:
type SetUserParams struct { ID uuid.UUID `json:"id"` Username null.String `json:"username"` Email null.String `json:"email"` Phone null.String `json:"phone"` Password null.String `json:"password"` MFAToken null.String `json:"mfatoken"` Active sql.NullBool `json:"active"` }
我想使用 null.bool
而不是 sql.nullbool
,这可能吗?
解决方法
像这样创建 schema.yaml
:
create table users ( ... active pg_catalog.bool )
在 sqlc.yaml
中,条目应如下所示:
- db_type: "pg_catalog.bool" nullable: true go_type: import: "gopkg.in/guregu/null.v4" package: "null" type: "bool"
然后在 sqlcgenerate
之后它看起来像这样:
type SetUserParams struct { ... Active null.Bool `json:"active"` }
因此它使用 null.bool
而不是 sql.nullbool
。
The above is the detailed content of SQLC overrides Bool type PostgreSQL. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

The article discusses Go's reflect package, used for runtime manipulation of code, beneficial for serialization, generic programming, and more. It warns of performance costs like slower execution and higher memory use, advising judicious use and best

The article discusses using table-driven tests in Go, a method that uses a table of test cases to test functions with multiple inputs and outcomes. It highlights benefits like improved readability, reduced duplication, scalability, consistency, and a

The article discusses managing Go module dependencies via go.mod, covering specification, updates, and conflict resolution. It emphasizes best practices like semantic versioning and regular updates.
