mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Added another test #1164
This commit is contained in:
parent
388bc4ff03
commit
a4daa58b7f
@ -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
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user