Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-10-27 | Revert to manually quoting Oracle identifiers where necessary | Constantin Michael | 1 | -7/+1 | |
2011-10-26 | Quote schema object identifiers for Oracle where necessary | Constantin Michael | 1 | -0/+7 | |
Oracle converts all alphabetical characters in unquoted schema object identifiers to uppercase. This behaviour cannot be disabled. | |||||
2011-10-21 | Remove common_ from all table_prefix arguments in common tests | Constantin Michael | 1 | -1/+1 | |
2011-08-24 | Make tests use unique table prefixes | Boris Kolpackov | 1 | -1/+2 | |
2011-08-19 | Rework query machinery not to use '_' as primary table alias | Boris Kolpackov | 1 | -1/+1 | |
Now we always qualify with the actual table name and use the '_' alias for situations where an object is referencing itself. | |||||
2011-08-18 | Fix custom recursive loading in post_load callback | Boris Kolpackov | 1 | -4/+25 | |
Before we called the callback while holding the statements locked. As a result, if the callback tried to load another object of this type, it failed. Now we unlock the statements (since we have completely loaded the object from ODB's point of view) and then call the callback. The callback test has been updated to test this situation. | |||||
2011-07-18 | Qualify id with table alias to help SQLite out | Boris Kolpackov | 1 | -1/+1 | |
This hack should go away once we have language-integrated support for ORDER BY. | |||||
2011-07-11 | Order results by id to get consistent test output order | Boris Kolpackov | 1 | -1/+1 | |
2011-07-05 | Fix memory leak | Boris Kolpackov | 1 | -0/+2 | |
2011-07-04 | Implement support for database operations callbacks | Boris Kolpackov | 1 | -0/+160 | |
New object pragma: callback. New test: common/callback. New manual section: 10.1.4, "callback". |