CopyToOptions contains parsed options from a COPY TO STDOUT command
| 122 | } |
| 123 | |
| 124 | return opts, nil |
| 125 | } |
| 126 | |
| 127 | // CopyToOptions contains parsed options from a COPY TO STDOUT command |
| 128 | type CopyToOptions struct { |
| 129 | Source string // Table name or (SELECT query) |
| 130 | Delimiter string |
| 131 | HasHeader bool |
| 132 | IsQuery bool // True if Source is a query in parentheses |
nothing calls this directly
no outgoing calls
no test coverage detected