The problem with propel-load-data fixture format.
It should be obvious in the following examples:
Simple unnamed record, works fine:
MyTable:
- { my_column: "my contents #1" }
The same record (named this time), formatted in two lines, works fine:
MyTable:
named_record:
my_column: "my contents #1"
The same named record, reformatted into one line - throws an exception! (why?!):
MyTable:
named_record: { my_column: "my contents #1" }
And... having "#" sign removed, the example works fine again:
MyTable:
named_record: { my_column: "my contents _1" }
Seems that #-sign ir treated differently, even between double quotes.