Changeset 2652

Show
Ignore:
Timestamp:
01/11/07 09:59:25 (2 years ago)
Author:
paul
Message:

Firebird has a different limit clause setup than MySQL, so we override the
test_AutoSQL.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/paul_sandbox/dabo/db/test/test_dCursorMixin.py

    r2651 r2652  
    320320""" % self.temp_table_name, self.temp_table_name, self.temp_table_name) 
    321321 
     322    def test_AutoSQL(self): 
     323        cur = self.cur 
     324        self.assertEqual(cur.AutoSQL, "select first 1000 skip 0 *\n  from %s" 
     325                % self.temp_table_name) 
    322326 
    323327if __name__ == "__main__":