mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUG FIX: column names quoted properly (from r100692)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@105623 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
169a7cfb82
commit
b717d19457
@ -288,9 +288,9 @@ class DataObjectSetTest extends SapphireTest {
|
||||
*/
|
||||
function testInsertFirst() {
|
||||
// Get one comment
|
||||
$comment = DataObject::get_one('PageComment', 'Name = \'Joe\'');
|
||||
$comment = DataObject::get_one('PageComment', '"Name" = \'Joe\'');
|
||||
// Get all other comments
|
||||
$set = DataObject::get('PageComment', 'Name != \'Joe\'');
|
||||
$set = DataObject::get('PageComment', '"Name" != \'Joe\'');
|
||||
|
||||
// Duplicate so we can use it later without another lookup
|
||||
$otherSet = clone $set;
|
||||
|
Loading…
Reference in New Issue
Block a user