@@ -872,11 +872,11 @@ RETURNING e * 2, b, tableoid::regclass;
872
872
EXPLAIN (VERBOSE, COSTS OFF)
873
873
INSERT INTO test_inserts.storage (d, e) SELECT i, i
874
874
FROM generate_series(1, 10) i;
875
- QUERY PLAN
876
- -------------------------------------------------------------------------------
875
+ QUERY PLAN
876
+ -----------------------------------------------------------------------------------
877
877
Insert on test_inserts.storage
878
878
-> Custom Scan (PartitionFilter)
879
- Output: NULL::integer, storage.b , NULL::integer, storage.d, storage.e
879
+ Output: NULL::integer, NULL::integer , NULL::integer, storage.d, storage.e
880
880
-> Function Scan on pg_catalog.generate_series i
881
881
Output: NULL::integer, NULL::integer, NULL::integer, i, i
882
882
Function Call: generate_series(1, 10)
@@ -885,11 +885,11 @@ FROM generate_series(1, 10) i;
885
885
EXPLAIN (VERBOSE, COSTS OFF)
886
886
INSERT INTO test_inserts.storage (b) SELECT i
887
887
FROM generate_series(1, 10) i;
888
- QUERY PLAN
889
- ---------------------------------------------------------------------------------
888
+ QUERY PLAN
889
+ -----------------------------------------------------------------------------------
890
890
Insert on test_inserts.storage
891
891
-> Custom Scan (PartitionFilter)
892
- Output: NULL::integer, storage.b, NULL::integer, storage.d, storage.e
892
+ Output: NULL::integer, storage.b, NULL::integer, NULL::text, NULL::bigint
893
893
-> Function Scan on pg_catalog.generate_series i
894
894
Output: NULL::integer, i, NULL::integer, NULL::text, NULL::bigint
895
895
Function Call: generate_series(1, 10)
@@ -939,11 +939,11 @@ FROM test_inserts.storage;
939
939
EXPLAIN (VERBOSE, COSTS OFF)
940
940
INSERT INTO test_inserts.storage (b, d) SELECT b, d
941
941
FROM test_inserts.storage;
942
- QUERY PLAN
943
- -------------------------------------------------------------------------------
942
+ QUERY PLAN
943
+ ----------------------------------------------------------------------------------
944
944
Insert on test_inserts.storage
945
945
-> Custom Scan (PartitionFilter)
946
- Output: NULL::integer, storage.b, NULL::integer, storage.d, storage.e
946
+ Output: NULL::integer, storage.b, NULL::integer, storage.d, NULL::bigint
947
947
-> Result
948
948
Output: NULL::integer, b, NULL::integer, d, NULL::bigint
949
949
-> Append
@@ -980,11 +980,11 @@ FROM test_inserts.storage;
980
980
EXPLAIN (VERBOSE, COSTS OFF)
981
981
INSERT INTO test_inserts.storage (b) SELECT b
982
982
FROM test_inserts.storage;
983
- QUERY PLAN
984
- ---------------------------------------------------------------------------------
983
+ QUERY PLAN
984
+ -----------------------------------------------------------------------------------
985
985
Insert on test_inserts.storage
986
986
-> Custom Scan (PartitionFilter)
987
- Output: NULL::integer, storage.b, NULL::integer, storage.d, storage.e
987
+ Output: NULL::integer, storage.b, NULL::integer, NULL::text, NULL::bigint
988
988
-> Result
989
989
Output: NULL::integer, b, NULL::integer, NULL::text, NULL::bigint
990
990
-> Append
0 commit comments