j2gg0s

Results 24 comments of j2gg0s
trafficstars

1. Postgresql's RETURNING only return rows be affected. 2. bun's Return("*") enable RETURNING, Return("NULL") disable RETURNING 3. When RETURNING is enabled, bun will update the returned data to `dest` 4....

@harry-xm - 一般看到 V2 会认为是个大版本升级,之前用 V1 的未必敢直接升级过去 - v1 的最新 tag 是 v1.2.5,但是这个 tag 应该被 push force 过?所以是不是直接在这个基础上打个 v1.2.6?

> Can you include any configuration you have for your source/sink applications? It looks to me like the messages have headers, and the globalId of the schema is included in...

```json { "config": { "connector.class": "io.debezium.connector.mysql.MySqlConnector", "database.connectionTimeZone": "Asia/Shanghai", "database.hostname": "***", "database.password": "***", "database.port": "3306", "database.server.id": "5501", "database.user": "***", "errors.log.enable": "true", "errors.retry.timeout": "600000", "key.converter": "io.apicurio.registry.utils.converter.AvroConverter", "key.converter.apicurio.registry.auto-register": "true", "key.converter.apicurio.registry.find-latest": "true", "key.converter.apicurio.registry.url": "http://apicurio.kafka:8080/apis/registry/v2",...

For PostgreSQL, this is a very useful feature. Bun doesn’t mind providing dialect-specific methods — you can already see some existing examples of this. [query_select.go](https://github.com/uptrace/bun/blob/master/query_select.go#L232) I don’t believe we can...

PRs are always welcome. Bun is an open-source community project, and we don’t impose overly strict constraints on the code. Most of the time, it just needs to pass lint...

> > Hey [@sblackstone](https://github.com/sblackstone), I have the same issue here. However I noticed that the issue happens randomly during the boot process of the container, sometimes it generates the correct...

If you want, you can disable explict casting by turn off `feature.DoubleColonCast`. Link: https://github.com/uptrace/bun/blob/master/query_values.go#L221. With version >= v1.2.7, we add new function [WithoutFeature](https://github.com/uptrace/bun/blob/master/dialect/pgdialect/dialect.go#L67)

If we only check a subset of type conversions, what criteria should we use to decide which subset to select? If we check all possible type conversions, is it necessary?...