mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Fix collection of typos in the code and the documentation
Some words were duplicated while other places were grammatically incorrect, including one variable name in the code. Author: Otto Kekalainen, Justin Pryzby Discussion: https://postgr.es/m/7DDBEFC5-09B6-4325-B942-B563D1A24BDC@amazon.com
This commit is contained in:
		@@ -3102,7 +3102,7 @@ show_memoize_info(MemoizeState *mstate, List *ancestors, ExplainState *es)
 | 
			
		||||
	ListCell   *lc;
 | 
			
		||||
	List	   *context;
 | 
			
		||||
	StringInfoData keystr;
 | 
			
		||||
	char	   *seperator = "";
 | 
			
		||||
	char	   *separator = "";
 | 
			
		||||
	bool		useprefix;
 | 
			
		||||
	int64		memPeakKb;
 | 
			
		||||
 | 
			
		||||
@@ -3123,11 +3123,11 @@ show_memoize_info(MemoizeState *mstate, List *ancestors, ExplainState *es)
 | 
			
		||||
	{
 | 
			
		||||
		Node	   *expr = (Node *) lfirst(lc);
 | 
			
		||||
 | 
			
		||||
		appendStringInfoString(&keystr, seperator);
 | 
			
		||||
		appendStringInfoString(&keystr, separator);
 | 
			
		||||
 | 
			
		||||
		appendStringInfoString(&keystr, deparse_expression(expr, context,
 | 
			
		||||
														   useprefix, false));
 | 
			
		||||
		seperator = ", ";
 | 
			
		||||
		separator = ", ";
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (es->format != EXPLAIN_FORMAT_TEXT)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user