epgsql_copy.hrl 376 B

123456789
  1. -record(copy,
  2. {
  3. %% pid of the process that started the COPY. It is used to receive asynchronous error
  4. %% messages when some error in data stream was detected
  5. initiator :: pid(),
  6. last_error :: undefined | epgsql:query_error(),
  7. format :: binary | text,
  8. binary_types :: [epgsql:epgsql_type()] | undefined
  9. }).