mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	This is preliminary patch. It adds NOT NULL checking for the result of pg_stat_statements_reset() function. It is needed for upcoming patch "Track statement entry timestamp" that will change the result type of this function to the timestamp of a reset performed. Discussion: https://postgr.es/m/flat/72e80e7b160a6eb189df9ef6f068cce3765d37f8.camel%40moonset.ru Author: Andrei Zubkov Reviewed-by: Julien Rouhaud, Hayato Kuroda, Yuki Seino, Chengxi Sun Reviewed-by: Anton Melnikov, Darren Rush, Michael Paquier, Sergei Kornilov Reviewed-by: Alena Rybakina, Andrei Lepikhov
		
			
				
	
	
		
			31 lines
		
	
	
		
			849 B
		
	
	
	
		
			PL/PgSQL
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			849 B
		
	
	
	
		
			PL/PgSQL
		
	
	
	
	
	
--
 | 
						|
-- Cursors
 | 
						|
--
 | 
						|
 | 
						|
-- These tests require track_utility to be enabled.
 | 
						|
SET pg_stat_statements.track_utility = TRUE;
 | 
						|
SELECT pg_stat_statements_reset() IS NOT NULL AS t;
 | 
						|
 | 
						|
-- DECLARE
 | 
						|
-- SELECT is normalized.
 | 
						|
DECLARE cursor_stats_1 CURSOR WITH HOLD FOR SELECT 1;
 | 
						|
CLOSE cursor_stats_1;
 | 
						|
DECLARE cursor_stats_1 CURSOR WITH HOLD FOR SELECT 2;
 | 
						|
CLOSE cursor_stats_1;
 | 
						|
 | 
						|
SELECT calls, rows, query FROM pg_stat_statements ORDER BY query COLLATE "C";
 | 
						|
SELECT pg_stat_statements_reset() IS NOT NULL AS t;
 | 
						|
 | 
						|
-- FETCH
 | 
						|
BEGIN;
 | 
						|
DECLARE cursor_stats_1 CURSOR WITH HOLD FOR SELECT 2;
 | 
						|
DECLARE cursor_stats_2 CURSOR WITH HOLD FOR SELECT 3;
 | 
						|
FETCH 1 IN cursor_stats_1;
 | 
						|
FETCH 1 IN cursor_stats_2;
 | 
						|
CLOSE cursor_stats_1;
 | 
						|
CLOSE cursor_stats_2;
 | 
						|
COMMIT;
 | 
						|
 | 
						|
SELECT calls, rows, query FROM pg_stat_statements ORDER BY query COLLATE "C";
 | 
						|
SELECT pg_stat_statements_reset() IS NOT NULL AS t;
 |