Commit 5171e6d
authored
fix: FixRawSize CanAccept SQL array cast typo (#1035)
$1::[]bigint is Go slice syntax, not PostgreSQL. Should be $1::bigint[].
Causes 'syntax error at or near "["' on every poll cycle, preventing
all FixRawSize tasks from being accepted.
Introduced in #855 (improve canAccept() performance) — every other
CanAccept rewrite in that PR uses the correct ::bigint[] form; this
one file was missed.1 parent 4918b43 commit 5171e6d
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
131 | 131 | | |
132 | 132 | | |
133 | 133 | | |
134 | | - | |
| 134 | + | |
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
| |||
0 commit comments