Will there *not* be a Django ORM implementation of psycopg3 COPY FROM when that lands? And, I guess I'll need to figure out when that lands/would land.
Not automagically, since the ORM does not use COPY internally. The main ORM parts are pretty generic, thus mostly based on ANSI compliant SQL statements, which is good to keep it db vendor independent.

COPY is a postgres invention to move plain constant table data as fast as possible skipping most higher DBMS functionality (in/out or between tables, many postgres backup tools use it).

--
You received this message because you are subscribed to the Google Groups "Django 
developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/3acd103a-8aea-0223-41a1-d8598a55954c%40netzkolchose.de.

Reply via email to