Changes between Initial Version and Version 1 of Ticket #6148, comment 104
- Timestamp:
- Mar 30, 2012, 6:13:39 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6148, comment 104
initial v1 4 4 5 5 Current status of the feature: SQLite now has faked schema support, the schema name is just appended to the table's name. Both settings.DEFAULT_SCHEMA and per-alias SCHEMA configurations now work in addition to the Meta: db_schema. Introspection and database creation work fully, and full test suite pass on both SQLite and PostgreSQL even when global settings defines a custom schema (except for the above mentioned initial raw SQL issue). Making the tests pass involved a lot of raw SQL rewriting from "select * from sometable" to "select * from %s" % connection.qname(!SomeModel). MySQL and Oracle are still totally broken. 6 7 EDIT: Good news everybody! I just realized that initial SQL can't be used in testing, so initial SQL in testing isn't a problem :)