Update tests/queries/0_stateless/03035_alias_column_bug_distributed.sql

This commit is contained in:
Nikita Mikhaylov 2024-04-02 21:53:03 +02:00 committed by GitHub
parent fb2163ed7c
commit 81f210be93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,7 +34,7 @@ ORDER BY src;
CREATE TABLE alias_bug_dist CREATE TABLE alias_bug_dist
AS alias_bug AS alias_bug
ENGINE = Distributed('default', currentDatabase(), 'alias_bug', rand()); ENGINE = Distributed('test_shard_localhost', currentDatabase(), 'alias_bug', rand());
-- Unknown identifier -- Unknown identifier
SELECT CAST(123, 'String') AS src,theAlias FROM alias_bug_dist LIMIT 1 FORMAT Null; SELECT CAST(123, 'String') AS src,theAlias FROM alias_bug_dist LIMIT 1 FORMAT Null;