Changes between Initial Version and Version 1 of Ticket #25947
- Timestamp:
- Dec 17, 2015, 12:15:53 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25947
- Property Component Uncategorized → Database layer (models, ORM)
- Property Triage Stage Unreviewed → Accepted
- Property Summary Query's str() method fails when default Database has no parameters → Query's str() method fails when 'default' database is empty
- Property Type Uncategorized → Bug
-
Ticket #25947 – Description
initial v1 79 79 {{{ 80 80 def sql_with_params(self): 81 82 83 84 85 81 """ 82 Returns the query as an SQL string and the parameters that will be 83 substituted into the query. 84 """ 85 return self.get_compiler(DEFAULT_DB_ALIAS).as_sql() 86 86 }}}