mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Revert "Skip WAL for new relfilenodes, under wal_level=minimal."
This reverts commit cb2fd7eac2.  Per
numerous buildfarm members, it was incompatible with parallel query, and
a test case assumed LP64.  Back-patch to 9.5 (all supported versions).
Discussion: https://postgr.es/m/20200321224920.GB1763544@rfd.leadboat.com
			
			
This commit is contained in:
		@@ -1360,13 +1360,6 @@ select * from another;
 | 
			
		||||
 | 
			
		||||
drop table another;
 | 
			
		||||
 | 
			
		||||
-- Create an index that skips WAL, then perform a SET DATA TYPE that skips
 | 
			
		||||
-- rewriting the index.
 | 
			
		||||
begin;
 | 
			
		||||
create table skip_wal_skip_rewrite_index (c varchar(10) primary key);
 | 
			
		||||
alter table skip_wal_skip_rewrite_index alter c type varchar(20);
 | 
			
		||||
commit;
 | 
			
		||||
 | 
			
		||||
-- table's row type
 | 
			
		||||
create table tab1 (a int, b text);
 | 
			
		||||
create table tab2 (x int, y tab1);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user