| 103 | rawOptions string |
| 104 | |
| 105 | // dataLoader is the implementation of DataLoader that is used to load each individual CopyData chunk into the |
| 106 | // target table. |
| 107 | dataLoader DataLoader |
| 108 | // copyErr stores any error that was returned while processing a CopyData message and loading a chunk of data |
| 109 | // to the target table. The server needs to keep track of any errors that were encountered while processing chunks |
| 110 | // so that it can avoid sending a CommandComplete message if an error was encountered after the client already |
| 111 | // sent a CopyDone message to the server. |
| 112 | copyErr error |
| 113 | } |
| 114 | |
| 115 | type PortalData struct { |
| 116 | Statement ConvertedStatement |
nothing calls this directly
no outgoing calls
no test coverage detected