mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Remove prototype for fmgr() function, which no longer exists.
Commit 5ded4bd214 removed the code
for this function, but neglected to remove the prototype and
associated comments.
Dagfinn Ilmari Mannsåker
Discussion: http://postgr.es/m/d8j4lmuxjzk.fsf@dalvik.ping.uio.no
			
			
This commit is contained in:
		@@ -730,19 +730,4 @@ extern PGDLLIMPORT fmgr_hook_type fmgr_hook;
 | 
				
			|||||||
#define FmgrHookIsNeeded(fn_oid)							\
 | 
					#define FmgrHookIsNeeded(fn_oid)							\
 | 
				
			||||||
	(!needs_fmgr_hook ? false : (*needs_fmgr_hook)(fn_oid))
 | 
						(!needs_fmgr_hook ? false : (*needs_fmgr_hook)(fn_oid))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					 | 
				
			||||||
 * !!! OLD INTERFACE !!!
 | 
					 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * fmgr() is the only remaining vestige of the old-style caller support
 | 
					 | 
				
			||||||
 * functions.  It's no longer used anywhere in the Postgres distribution,
 | 
					 | 
				
			||||||
 * but we should leave it around for a release or two to ease the transition
 | 
					 | 
				
			||||||
 * for user-supplied C functions.  OidFunctionCallN() replaces it for new
 | 
					 | 
				
			||||||
 * code.
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/*
 | 
					 | 
				
			||||||
 * DEPRECATED, DO NOT USE IN NEW CODE
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
extern char *fmgr(Oid procedureId,...);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#endif							/* FMGR_H */
 | 
					#endif							/* FMGR_H */
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user