~ubuntu-branches/ubuntu/utopic/postgresql-9.4/utopic-security

« back to all changes in this revision

Viewing changes to src/test/regress/expected/rangetypes.out

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, CVE-2014-8161
  • Date: 2015-02-06 12:31:46 UTC
  • mfrom: (1.1.5) (7.1.2 utopic-proposed)
  • Revision ID: package-import@ubuntu.com-20150206123146-vtmf30jbkm7w16p8
Tags: 9.4.1-0ubuntu0.14.10
* New upstream security/bug fix release (LP: #1418928)
  - Fix buffer overruns in to_char() [CVE-2015-0241]
  - Fix buffer overruns in contrib/pgcrypto [CVE-2015-0243]
  - Fix possible loss of frontend/backend protocol synchronization after an
    error [CVE-2015-0244]
  - Fix information leak via constraint-violation error messages
    [CVE-2014-8161]
  - See release notes for details about other fixes:
    http://www.postgresql.org/about/news/1569/

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
 [1.1,2.2)
261
261
(1 row)
262
262
 
 
263
select * from numrange_test where nr < 'empty';
 
264
 nr 
 
265
----
 
266
(0 rows)
 
267
 
263
268
select * from numrange_test where nr < numrange(-1000.0, -1000.0,'[]');
264
269
  nr   
265
270
-------
287
292
 [1.7,1.7]
288
293
(6 rows)
289
294
 
 
295
select * from numrange_test where nr <= 'empty';
 
296
  nr   
 
297
-------
 
298
 empty
 
299
(1 row)
 
300
 
 
301
select * from numrange_test where nr >= 'empty';
 
302
    nr     
 
303
-----------
 
304
 (,)
 
305
 [3,)
 
306
 (,5)
 
307
 [1.1,2.2)
 
308
 empty
 
309
 [1.7,1.7]
 
310
(6 rows)
 
311
 
 
312
select * from numrange_test where nr > 'empty';
 
313
    nr     
 
314
-----------
 
315
 (,)
 
316
 [3,)
 
317
 (,5)
 
318
 [1.1,2.2)
 
319
 [1.7,1.7]
 
320
(5 rows)
 
321
 
290
322
select * from numrange_test where nr > numrange(-1001.0, -1000.0,'[]');
291
323
    nr     
292
324
-----------