mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Adjust the order of the prechecks in pgrowlocks()
4b8266415added a precheck to pgrowlocks() to ensure the given object's pg_class.relam is HEAP_TABLE_AM_OID, however, that check was put before another check which was checking if the given object was a partitioned table. Since the pg_class.relam is always InvalidOid for partitioned tables, if pgrowlocks() was called passing a partitioned table, then the "only heap AM is supported" error would be raised instead of the intended error about the given object being a partitioned table. Here we simply move the pg_class.relam check to after the check that verifies that we are in fact working with a normal (non-partitioned) table. Reported-by: jian he Discussion: https://postgr.es/m/CACJufxFaSp_WguFCf0X98951zFVX+dXFnF1mxAb-G3g1HiHOow@mail.gmail.com Backpatch-through: 12, where4b8266415was introduced.
This commit is contained in:
		@@ -107,10 +107,6 @@ pgrowlocks(PG_FUNCTION_ARGS)
 | 
				
			|||||||
	relrv = makeRangeVarFromNameList(textToQualifiedNameList(relname));
 | 
						relrv = makeRangeVarFromNameList(textToQualifiedNameList(relname));
 | 
				
			||||||
	rel = relation_openrv(relrv, AccessShareLock);
 | 
						rel = relation_openrv(relrv, AccessShareLock);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (rel->rd_rel->relam != HEAP_TABLE_AM_OID)
 | 
					 | 
				
			||||||
		ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
 | 
					 | 
				
			||||||
						errmsg("only heap AM is supported")));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (rel->rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
 | 
						if (rel->rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
 | 
				
			||||||
		ereport(ERROR,
 | 
							ereport(ERROR,
 | 
				
			||||||
				(errcode(ERRCODE_WRONG_OBJECT_TYPE),
 | 
									(errcode(ERRCODE_WRONG_OBJECT_TYPE),
 | 
				
			||||||
@@ -122,6 +118,10 @@ pgrowlocks(PG_FUNCTION_ARGS)
 | 
				
			|||||||
				(errcode(ERRCODE_WRONG_OBJECT_TYPE),
 | 
									(errcode(ERRCODE_WRONG_OBJECT_TYPE),
 | 
				
			||||||
				 errmsg("\"%s\" is not a table",
 | 
									 errmsg("\"%s\" is not a table",
 | 
				
			||||||
						RelationGetRelationName(rel))));
 | 
											RelationGetRelationName(rel))));
 | 
				
			||||||
 | 
						else if (rel->rd_rel->relam != HEAP_TABLE_AM_OID)
 | 
				
			||||||
 | 
							ereport(ERROR,
 | 
				
			||||||
 | 
									(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
 | 
				
			||||||
 | 
									 errmsg("only heap AM is supported")));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	 * check permissions: must have SELECT on table or be in
 | 
						 * check permissions: must have SELECT on table or be in
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user