Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 2.0
-
Fix Version/s: None
-
Component/s: Unit tests
-
Labels:None
-
Affected Branches:MOODLE_20_STABLE
Description
For things like column naming
Attachments
Activity
- All
- Comments
- History
- Activity
- Source
- Test Sessions
Adding Eloy and Petr here.
When playing with sqlite - I noticed that none of the current dml tests didn't spot inconsistencies with complicated things like subqueries.
In the case of sqlite it was returning things like:
stdClass Object
(
[one.name] => record3
[one.course] => 3
)
Instead of:
stdClass Object
(
[name] => record3
[course] => 3
)
Attached one test which demonstrates this (but we probably need more and I am not sure if its the best approach)