Page MenuHomePhabricator

Queries hang when results have duplicate column names
Closed, DuplicatePublic

Description

Hi -- I'm using Quarry, and I think I noticed a potential bug. When the query's results would have duplicate column names, it seems that the query continues to be "running", and never returns results.

For instance, this query executes in seconds:

SELECT 1 as foo;

This query executes in seconds:

SELECT 1 as foo, 2 as bar;

And this query never finishes:

SELECT 1 as foo, 2 as foo;

Thank you,

Marshall