From 77f641429f019d06cc467ec4e57ae94f808d70bd Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 25 Nov 2010 12:20:13 -0500 Subject: - Fixed operator precedence rules for multiple chains of a single non-associative operator. I.e. "x - (y - z)" will compile as "x - (y - z)" and not "x - y - z". Also works with labels, i.e. "x - (y - z).label('foo')" [ticket:1984] - Single element tuple expressions inside an IN clause parenthesize correctly, also from [ticket:1984], added tests for PG - re-fix again importlater, [ticket:1983] --- test/base/test_utils.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'test/base') diff --git a/test/base/test_utils.py b/test/base/test_utils.py index d083a8458..e7ecbec51 100644 --- a/test/base/test_utils.py +++ b/test/base/test_utils.py @@ -149,8 +149,6 @@ class ColumnCollectionTest(TestBase): assert (cc1==cc2).compare(c1 == c2) assert not (cc1==cc3).compare(c2 == c3) - - class LRUTest(TestBase): def test_lru(self): -- cgit v1.2.1