I tested it and it works fine without the single quotes. Thanks for pointing it out to me. I didn't know about the change. Actually, it is better to use the new way as it doesn't need to parse the extra quotes. These all work for it:
Code:
$new_datastore_fetch[] = 'your column name here';
$new_datastore_fetch[] = "your column name here"; <-- I am using this one
$new_datastore_fetch[] = your column name here;