I noticed that lib/pq started to support COPY FROM STDIN. Does it make sense to rewrite BulkInsert method to use this technique for postgres (maybe by making it a part of dialect)? It is so much faster to import large amounts of data using COPY FROM STDIN.
I noticed that
lib/pqstarted to supportCOPY FROM STDIN. Does it make sense to rewriteBulkInsertmethod to use this technique for postgres (maybe by making it a part of dialect)? It is so much faster to import large amounts of data usingCOPY FROM STDIN.