mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Fix compile breakage due to 0315dfa8f4.
				
					
				
			I wasn't careful enough when back-patching.
This commit is contained in:
		@@ -3063,8 +3063,8 @@ _complete_from_query(int is_schema_query, const char *text, int state)
 | 
			
		||||
		result = NULL;
 | 
			
		||||
 | 
			
		||||
		/* Set up suitably-escaped copies of textual inputs */
 | 
			
		||||
		e_text = pg_malloc(string_length * 2 + 1);
 | 
			
		||||
		PQescapeString(e_text, text, string_length);
 | 
			
		||||
		e_text = pg_malloc(byte_length * 2 + 1);
 | 
			
		||||
		PQescapeString(e_text, text, byte_length);
 | 
			
		||||
 | 
			
		||||
		if (completion_info_charp)
 | 
			
		||||
		{
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user