mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	Fix parallel bitmapscan tests on builds without USE_PREFETCH.
This was broken in 5a5931533edd2.
This commit is contained in:
		
							parent
							
								
									7e534adcdc
								
							
						
					
					
						commit
						d611517fc4
					
				@ -175,7 +175,12 @@ set enable_indexscan to off;
 | 
			
		||||
set enable_hashjoin to off;
 | 
			
		||||
set enable_mergejoin to off;
 | 
			
		||||
set enable_material to off;
 | 
			
		||||
set effective_io_concurrency=50;
 | 
			
		||||
-- test prefetching, if the platform allows it
 | 
			
		||||
DO $$
 | 
			
		||||
BEGIN
 | 
			
		||||
 SET effective_io_concurrency = 50;
 | 
			
		||||
EXCEPTION WHEN invalid_parameter_value THEN
 | 
			
		||||
END $$;
 | 
			
		||||
set work_mem='64kB';  --set small work mem to force lossy pages
 | 
			
		||||
explain (costs off)
 | 
			
		||||
	select count(*) from tenk1, tenk2 where tenk1.hundred > 1 and tenk2.thousand=0;
 | 
			
		||||
 | 
			
		||||
@ -70,7 +70,12 @@ set enable_indexscan to off;
 | 
			
		||||
set enable_hashjoin to off;
 | 
			
		||||
set enable_mergejoin to off;
 | 
			
		||||
set enable_material to off;
 | 
			
		||||
set effective_io_concurrency=50;
 | 
			
		||||
-- test prefetching, if the platform allows it
 | 
			
		||||
DO $$
 | 
			
		||||
BEGIN
 | 
			
		||||
 SET effective_io_concurrency = 50;
 | 
			
		||||
EXCEPTION WHEN invalid_parameter_value THEN
 | 
			
		||||
END $$;
 | 
			
		||||
set work_mem='64kB';  --set small work mem to force lossy pages
 | 
			
		||||
explain (costs off)
 | 
			
		||||
	select count(*) from tenk1, tenk2 where tenk1.hundred > 1 and tenk2.thousand=0;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user