Changeset 7901
- Timestamp:
- 07/12/08 06:01:57 (6 months ago)
- Files:
-
- django/trunk/django/db/models/sql/query.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/models/sql/query.py
r7886 r7901 287 287 if self.high_mark is not None: 288 288 result.append('LIMIT %d' % (self.high_mark - self.low_mark)) 289 if self.low_mark is not None:289 if self.low_mark: 290 290 if self.high_mark is None: 291 291 val = self.connection.ops.no_limit_value()
