PostgreSQL does not allow double quotes :
SELECT * FROM contemplate WHERE type = "foo";
should be written:
SELECT * FROM contemplate WHERE type = 'foo';
In fact, double quotes are treated by PostgreSQL as two single quote.
It should be the same on other SQL92 database systems.
Patch included. Should not produce problems on MySQL.
| Comment | File | Size | Author |
|---|---|---|---|
| contemplate.patch | 1.18 KB | grub3 |
Comments
Comment #1
jrglasgow commentedthe patch would not apply, I made changes manually, they will appear in the next version of Contemplate.
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.