From 4bea91f21f61d01bd40a4191a4a8c82d0959fffe Mon Sep 17 00:00:00 2001 From: Masahiko Sawada Date: Mon, 20 Oct 2025 10:38:52 -0700 Subject: Support COPY TO for partitioned tables. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously, COPY TO command didn't support directly specifying partitioned tables so users had to use COPY (SELECT ...) TO variant. This commit adds direct COPY TO support for partitioned tables, improving both usability and performance. Performance tests show it's faster than the COPY (SELECT ...) TO variant as it avoids the overheads of query processing and sending results to the COPY TO command. When used with partitioned tables, COPY TO copies the same rows as SELECT * FROM table. Row-level security policies of the partitioned table are applied in the same way as when executing COPY TO on a plain table. Author: jian he Reviewed-by: vignesh C Reviewed-by: David Rowley Reviewed-by: Melih Mutlu Reviewed-by: Kirill Reshke Reviewed-by: Atsushi Torikoshi Reviewed-by: Álvaro Herrera Reviewed-by: Masahiko Sawada Reviewed-by: Chao Li Discussion: https://postgr.es/m/CACJufxEZt%2BG19Ors3bQUq-42-61__C%3Dy5k2wk%3DsHEFRusu7%3DiQ%40mail.gmail.com --- doc/src/sgml/ref/copy.sgml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'doc/src/sgml/ref/copy.sgml') diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index c2d1fbc1fbe..fdc24b36bb8 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -539,13 +539,14 @@ COPY count COPY TO can be used with plain - tables and populated materialized views. - For example, - COPY table - TO copies the same rows as + tables, populated materialized views, and partitioned tables. + For non-partitioned tables, COPY table + copies the same rows as SELECT * FROM ONLY table. + For partitioned tables, it copies the same rows as + SELECT * FROM table. However it doesn't directly support other relation types, - such as partitioned tables, inheritance child tables, or views. + such as inheritance child tables, or views. To copy all rows from such relations, use COPY (SELECT * FROM table) TO. -- cgit v1.2.3