jackc/pgx · error
expected '%c' ('%#v'); found '%c' ('%#v')
Error message
expected '%c' ('%#v'); found '%c' ('%#v') What it means
Error "expected '%c' ('%#v'); found '%c' ('%#v')" thrown in jackc/pgx.
Source
Thrown at pgtype/hstore.go:292
}
}
func (p *hstoreParser) atEnd() bool {
return p.pos >= len(p.str)
}
// consume returns the next byte of the string, or end if the string is done.
func (p *hstoreParser) consume() (b byte, end bool) {
if p.pos >= len(p.str) {
return 0, true
}
b = p.str[p.pos]
p.pos++
return b, false
}
func unexpectedByteErr(actualB, expectedB byte) error {
return fmt.Errorf("expected '%c' ('%#v'); found '%c' ('%#v')", expectedB, expectedB, actualB, actualB)
}
// consumeExpectedByte consumes expectedB from the string, or returns an error.
func (p *hstoreParser) consumeExpectedByte(expectedB byte) error {
nextB, end := p.consume()
if end {
return fmt.Errorf("expected '%c' ('%#v'); found end", expectedB, expectedB)
}
if nextB != expectedB {
return unexpectedByteErr(nextB, expectedB)
}
return nil
}
// consumeExpected2 consumes two expected bytes or returns an error.
// This was a bit faster than using a string argument (better inlining? Not sure).
func (p *hstoreParser) consumeExpected2(one, two byte) error {
if p.pos+2 > len(p.str) {View on GitHub (pinned to ec1a0befd2)
When it happens
Trigger: Thrown at pgtype/hstore.go:292 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of jackc/pgx@ec1a0befd2 (2026-08-04).
Data as JSON: /data/errors/89fae5e0b23eb3ce.json.
Report an issue: GitHub.