mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Per-column collation support
This adds collation support for columns and domains, a COLLATE clause to override it per expression, and B-tree index support. Peter Eisentraut reviewed by Pavel Stehule, Itagaki Takahiro, Robert Haas, Noah Misch
This commit is contained in:
		@@ -203,6 +203,7 @@ typedef struct RelationData
 | 
			
		||||
	Oid		   *rd_exclprocs;	/* OIDs of exclusion ops' procs, if any */
 | 
			
		||||
	uint16	   *rd_exclstrats;	/* exclusion ops' strategy numbers, if any */
 | 
			
		||||
	void	   *rd_amcache;		/* available for use by index AM */
 | 
			
		||||
	Oid		   *rd_indcollation; /* OIDs of index collations */
 | 
			
		||||
 | 
			
		||||
	/*
 | 
			
		||||
	 * Hack for CLUSTER, rewriting ALTER TABLE, etc: when writing a new
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user