type github.com/jackc/pgx/v5/pgtype.Hstore

21 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		builtin_wrappers.go#L612: func (w *mapStringToPointerStringWrapper) ScanHstore(v Hstore) error {
		builtin_wrappers.go#L617: func (w mapStringToPointerStringWrapper) HstoreValue() (Hstore, error) {
		builtin_wrappers.go#L618: 	return Hstore(w), nil
		builtin_wrappers.go#L623: func (w *mapStringToStringWrapper) ScanHstore(v Hstore) error {
		builtin_wrappers.go#L634: func (w mapStringToStringWrapper) HstoreValue() (Hstore, error) {
		builtin_wrappers.go#L639: 	hstore := make(Hstore, len(w))
		hstore.go#L14: 	ScanHstore(v Hstore) error
		hstore.go#L18: 	HstoreValue() (Hstore, error)
		hstore.go#L23: type Hstore map[string]*string
		hstore.go#L26: func (h *Hstore) ScanHstore(v Hstore) error {
		hstore.go#L32: func (h Hstore) HstoreValue() (Hstore, error) {
		hstore.go#L37: func (h *Hstore) Scan(src any) error {
		hstore.go#L52: func (h Hstore) Value() (driver.Value, error) {
		hstore.go#L189: 		return scanner.ScanHstore(Hstore(nil))
		hstore.go#L205: 	hstore := make(Hstore, pairCount)
		hstore.go#L250: 		return scanner.ScanHstore(Hstore(nil))
		hstore.go#L273: 	var hstore Hstore
		hstore.go#L446: func parseHstore(s string) (Hstore, error) {
		hstore.go#L454: 	result := make(Hstore, numPairsEstimate)