Project

General

Profile

« Previous | Next » 

Revision 3492

sql_gen.py: Added Tuple

View differences:

sql_gen.py
404 404
    def to_str(self, db):
405 405
        return '('+(', '.join((v.to_str(db) for v in self.values)))+')'
406 406

  
407
class Tuple(List):
408
    def to_str(self, db): return 'ROW'+List.to_str(self, db)
409

  
407 410
#### Definitions
408 411

  
409 412
class TypedCol(Col):

Also available in: Unified diff