Added another test #1164

This commit is contained in:
Alexey Milovidov 2018-10-17 08:20:07 +03:00
parent 388bc4ff03
commit a4daa58b7f

View File

@ -19,3 +19,15 @@ FROM
)
DROP TABLE installation_stats;
CREATE TEMPORARY TABLE Accounts (AccountID UInt64, Currency String);
SELECT AccountID
FROM
(
SELECT
AccountID,
Currency
FROM Accounts
LIMIT 2 BY Currency
);