j2gg0s

Results 43 comments of j2gg0s

@comsma If you’re using MSSQL, try setting time.Local to your target time zone.

I don’t know the exact reason, but I guess it’s simply because we haven’t supported this feature. This doesn’t seem essential, and Bun isn’t particularly advantageous when it comes to...

We will consider it when we have the time

After reflection, the kind of ULID should be Array([16]byte) rather than Struct. The example I constructed manually works. ```go ids := make([]ulid.ULID, 0) err := db.NewSelect().Model((*User)(nil)).Column("ulid").Scan(ctx, &ids) if err !=...

@NathanBaulch I’d like to first clarify the specific situation — would you mind trying to reproduce the issue using the latest version? In my local environment, using a type alias...

I switched to v1.2.15 and added the relevant code based on example/basic. The result is still that IDAlias and IDField work, but IDEmbed throws an error ` bun: IDEmbed does...

When I switched to PostgreSQL, the error I encountered was still that the embed field was not recognized, rather than it being zero value. ```go dsn := "postgres://j2gg0s:@localhost:5432/postgres?sslmode=disable" sqldb :=...

I’m sorry — using join together with extend seems to have some bugs. Fixing this issue looks like it will take some time. Reproducible code. ```go import ( "context" "database/sql"...

Thank you for your feedback and the solution you provided. It’s very detailed, and I basically don’t need to look up any additional information. In the related PR, I attempted...

While we use auto-incrementing numbers, we format the output using fixed-width numbers with leading zeros Such as: - 0000_migrate.up.sql - 0001_migrate.up.sql