forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitd0d649e
committed
Limit pgbench COPY FREEZE to ordinary relations
pgbench client-side data generation uses COPY FREEZE to load data for mosttables. COPY FREEZE isn't supported for partitioned tables and since pgbenchonly supports partitioning pgbench_accounts, pgbench used a hard-coded check toskip COPY FREEZE and use plain COPY for a partitioned pgbench_accounts.If the user has manually partitioned one of the other pgbench tables, thiscauses client-side data generation to error out with:ERROR: cannot perform COPY FREEZE on a partitioned tableFix this by limiting COPY FREEZE to ordinary tables (RELKIND_RELATION).Author: Sergey Tatarintsev <s.tatarintsev@postgrespro.ru>Reviewed-by: Álvaro Herrera <alvherre@alvh.no-ip.org>Discussion:https://postgr.es/m/flat/97f55fca-8a7b-4da8-b413-7d1c57010676%40postgrespro.ru1 parent38172d1 commitd0d649e
2 files changed
+35
-15
lines changedLines changed: 4 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
231 | 231 |
| |
232 | 232 |
| |
233 | 233 |
| |
234 |
| - | |
235 |
| - | |
236 |
| - | |
237 |
| - | |
238 |
| - | |
| 234 | + | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
239 | 238 |
| |
240 | 239 |
| |
241 | 240 |
| |
|
Lines changed: 31 additions & 10 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
53 | 53 |
| |
54 | 54 |
| |
55 | 55 |
| |
| 56 | + | |
56 | 57 |
| |
57 | 58 |
| |
58 | 59 |
| |
| |||
848 | 849 |
| |
849 | 850 |
| |
850 | 851 |
| |
| 852 | + | |
| 853 | + | |
| 854 | + | |
| 855 | + | |
| 856 | + | |
| 857 | + | |
| 858 | + | |
| 859 | + | |
| 860 | + | |
| 861 | + | |
| 862 | + | |
| 863 | + | |
| 864 | + | |
| 865 | + | |
| 866 | + | |
| 867 | + | |
| 868 | + | |
| 869 | + | |
| 870 | + | |
| 871 | + | |
| 872 | + | |
| 873 | + | |
| 874 | + | |
| 875 | + | |
| 876 | + | |
851 | 877 |
| |
852 | 878 |
| |
853 | 879 |
| |
| |||
4962 | 4988 |
| |
4963 | 4989 |
| |
4964 | 4990 |
| |
4965 |
| - | |
4966 |
| - | |
4967 |
| - | |
4968 |
| - | |
4969 |
| - | |
4970 |
| - | |
4971 |
| - | |
4972 |
| - | |
4973 |
| - | |
4974 |
| - | |
| 4991 | + | |
| 4992 | + | |
| 4993 | + | |
| 4994 | + | |
| 4995 | + | |
4975 | 4996 |
| |
4976 | 4997 |
| |
4977 | 4998 |
| |
|
0 commit comments
Comments
(0)