mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			487 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			487 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
set enable_seqscan=off;
 | 
						|
 | 
						|
CREATE TABLE test_numeric (
 | 
						|
	i numeric
 | 
						|
);
 | 
						|
 | 
						|
INSERT INTO test_numeric VALUES (-2),(-1),(0),(1),(2),(3);
 | 
						|
 | 
						|
CREATE INDEX idx_numeric ON test_numeric USING gin (i);
 | 
						|
 | 
						|
SELECT * FROM test_numeric WHERE i<'1'::numeric ORDER BY i;
 | 
						|
SELECT * FROM test_numeric WHERE i<='1'::numeric ORDER BY i;
 | 
						|
SELECT * FROM test_numeric WHERE i='1'::numeric ORDER BY i;
 | 
						|
SELECT * FROM test_numeric WHERE i>='1'::numeric ORDER BY i;
 | 
						|
SELECT * FROM test_numeric WHERE i>'1'::numeric ORDER BY i;
 |