Changeset 89
- Timestamp:
- 05/21/07 15:16:41
- Files:
-
- trunk/geniusql/objects.py (modified) (1 diff)
- trunk/geniusql/select.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/geniusql/objects.py
r88 r89 898 898 sel = self.selectwriter(self, query) 899 899 newtable = sel.result 900 901 # The selectwriter doesn't give the result table a name. 900 902 newtable.name = newtable.schema.table_name(name) 901 903 newtable.qname = self.quote(newtable.name) trunk/geniusql/select.py
r88 r89 144 144 input_list: a list of SQL expressions, one for each column in the 145 145 SELECT clause. These will include any "expr AS name" alias. 146 output_list: a list of the SQL names (aliases), one for eachcolumn.146 output_list: a list of the SQL names (aliases), one per output column. 147 147 output_keys: the keys for each column in the final table. 148 148 """
