Subject: | Does not work with quoted tables and columns |
I have some potentially problematic column names, so I've turned on quoting in the DBIC connect options.
When I attempt to do $node->children, I get: no such table: file me, file parent
This is because the SQL ends up looking like: SELECT "me"."id", ... FROM "file me, file parent"
I have a feeling I can work around this by changing around some names and turning off quoting, but it would be better if the module played nice with the quote option.
-Brian