mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Support unlogged tables.
The contents of an unlogged table are WAL-logged; thus, they are not available on standby servers and are truncated whenever the database system enters recovery. Indexes on unlogged tables are also unlogged. Unlogged GiST indexes are not currently supported.
This commit is contained in:
		@@ -114,6 +114,7 @@ typedef struct RelationAmInfo
 | 
			
		||||
	FmgrInfo	ammarkpos;
 | 
			
		||||
	FmgrInfo	amrestrpos;
 | 
			
		||||
	FmgrInfo	ambuild;
 | 
			
		||||
	FmgrInfo	ambuildempty;
 | 
			
		||||
	FmgrInfo	ambulkdelete;
 | 
			
		||||
	FmgrInfo	amvacuumcleanup;
 | 
			
		||||
	FmgrInfo	amcostestimate;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user