Contact: fumanchu@aminus.org

Log in as guest/geniusql to create tickets

Changeset 89

Show
Ignore:
Timestamp:
05/21/07 15:16:41
Author:
fumanchu
Message:

Docs.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/geniusql/objects.py

    r88 r89  
    898898        sel = self.selectwriter(self, query) 
    899899        newtable = sel.result 
     900         
     901        # The selectwriter doesn't give the result table a name. 
    900902        newtable.name = newtable.schema.table_name(name) 
    901903        newtable.qname = self.quote(newtable.name) 
  • trunk/geniusql/select.py

    r88 r89  
    144144    input_list: a list of SQL expressions, one for each column in the 
    145145        SELECT clause. These will include any "expr AS name" alias. 
    146     output_list: a list of the SQL names (aliases), one for each column. 
     146    output_list: a list of the SQL names (aliases), one per output column. 
    147147    output_keys: the keys for each column in the final table. 
    148148    """