We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7f02e6b + 2a9e9ed commit caa8715Copy full SHA for caa8715
array.go
@@ -22,7 +22,7 @@ var typeSQLScanner = reflect.TypeOf((*sql.Scanner)(nil)).Elem()
22
// db.Query(`SELECT * FROM t WHERE id = ANY($1)`, pq.Array([]int{235, 401}))
23
//
24
// var x []sql.NullInt64
25
-// db.QueryRow('SELECT ARRAY[235, 401]').Scan(pq.Array(&x))
+// db.QueryRow(`SELECT ARRAY[235, 401]`).Scan(pq.Array(&x))
26
27
// Scanning multi-dimensional arrays is not supported. Arrays where the lower
28
// bound is not one (such as `[0:0]={1}') are not supported.
0 commit comments