(p *string)
| 443 | } |
| 444 | |
| 445 | func derefString(p *string) string { |
| 446 | if p == nil { |
| 447 | return "" |
| 448 | } |
| 449 | return *p |
| 450 | } |
| 451 | |
| 452 | // BeginFunc helper for pgxpool.Pool — pgx v5 doesn't export the v4 |
| 453 | // shorthand, so we replicate it here. Used by fanOutOne so the tx |