Page MenuHomePhabricator

Mutiple columns with the same name will cause the result to not be shown
Closed, DuplicatePublic

Description

If you run this query using Quarry:

use enwiki_p; select page_title, page_title from page limit 1;

The results will not be shown in the screen. This is because of the two columns having the same name. Changing the query to the following will show results:

use enwiki_p; select page_title, page_title as page_title_2 from page limit 1;