-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: COPY my_table TO STDOUT BINARY #271
Conversation
Adds support for COPY my_table FROM STDIN BINARY. The binary format can be more efficient and is also immune to problems with escaping null values etc. The binary format is however only usable when copying to/from tables with exactly the same columns.
…pter into copy-in-binary
Adds support for COPY my_table TO STDOUT BINARY. The binary copy format is slightly more efficient than the text format, and has does not need any escaping of special valuesa, as there is no field delimiter or line terminator involved.
Codecov Report
@@ Coverage Diff @@
## postgresql-dialect #271 +/- ##
========================================================
+ Coverage 82.11% 82.29% +0.17%
- Complexity 1260 1277 +17
========================================================
Files 102 102
Lines 4355 4410 +55
Branches 539 548 +9
========================================================
+ Hits 3576 3629 +53
Misses 598 598
- Partials 181 183 +2
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Adds support for COPY my_table TO STDOUT BINARY. The binary copy format is
slightly more efficient than the text format, and has does not need any
escaping of special valuesa, as there is no field delimiter or line terminator
involved.