mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Support parameters in CALL
To support parameters in CALL, move the parse analysis of the procedure and arguments into the global transformation phase, so that the parser hooks can be applied. And then at execution time pass the parameters from ProcessUtility on to ExecuteCallStmt.
This commit is contained in:
		@@ -2814,7 +2814,8 @@ typedef struct InlineCodeBlock
 | 
			
		||||
typedef struct CallStmt
 | 
			
		||||
{
 | 
			
		||||
	NodeTag		type;
 | 
			
		||||
	FuncCall   *funccall;
 | 
			
		||||
	FuncCall   *funccall;		/* from the parser */
 | 
			
		||||
	FuncExpr   *funcexpr;		/* transformed */
 | 
			
		||||
} CallStmt;
 | 
			
		||||
 | 
			
		||||
typedef struct CallContext
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user