Skip to content

Commit

Permalink
fix(examples): fix odd issue with quota context (#1078)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkaflik authored Aug 30, 2023
1 parent 69a4e8a commit a9eb513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/clickhouse_api/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func UseContext() error {
type Number struct {
Number uint64 `ch:"number"`
}
for i := 1; i <= 6; i++ {
for i := 1; i <= 5; i++ {
var result []Number
if err = conn.Select(ctx, &result, "SELECT number FROM numbers(10)"); err != nil {
return err
Expand Down

0 comments on commit a9eb513

Please sign in to comment.