Queries like
SELECT 1, 'constructor', 1
or
SELECT id, tagname, count
FROM tags where id = 1531
or
SELECT * FROM TAGS
Don't work in the results to grid mode, but do in "Text-Only Results"
The following however all work fine
SELECT 1, 'constructor'
SELECT 1, 'constructor' , 1 , 1
SELECT 1 , 1, 'constructor'
SELECT 1, 'constructor' , 'A'
SELECT 'A', 'constructor' , 1
If it matters I'm using Chrome 18.0.1025.142
constructorproperty is special. – lunboks Apr 5 '12 at 20:46number,'constructor', numberthat make it break. – Some Helpful Commenter Apr 5 '12 at 21:03