-
-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Description
Hi!
I found some typos in docs.
-
https://clickhouse.uptrace.dev/guide/clickhouse-queries.html#scan-and-exec
Now for example "Scan columns into separate slices.":
err := db.NewSelect().Model(&user).Column("id", "name").Limit(100).Scan(ctx, &ids, &names)
Need:
err := db.NewSelect().Model(&user).Column("id", "name").Limit(100).ScanColumns(ctx, &ids, &names) -
https://clickhouse.uptrace.dev/guide/clickhouse-drop-table.html#api
Now for example:IfNotExists().
Need:IfExists()
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels