mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	Almost all functions provided by this extension are PARALLEL RESTRICTED. Mostly, that's because the leader's TCP connections won't be shared with the workers, but in some cases like dblink_get_pkey it's because they obtain locks which might be released early if taken within a parallel worker. dblink_fdw_validator probably can't be used in a query anyway, but there would be no problem from the point of view of parallel query if it were, so it's PARALLEL SAFE. Andreas Karlsson
		
			
				
	
	
		
			6 lines
		
	
	
		
			170 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			170 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# dblink extension
 | 
						|
comment = 'connect to other PostgreSQL databases from within a database'
 | 
						|
default_version = '1.2'
 | 
						|
module_pathname = '$libdir/dblink'
 | 
						|
relocatable = true
 |