ClickHouse/tests/integration/test_storage_kafka
AVMusorin 418a61a68c
Allow using Alias column type for KafkaEngine
```
create table kafka
(
 a UInt32,
 a_str String Alias toString(a)
) engine = Kafka;

create table data
(
  a UInt32;
  a_str String
) engine = MergeTree
order by tuple();

create materialized view data_mv to data
(
  a UInt32,
  a_str String
) as
select a, a_str from kafka;
```
Alias type works as expected in comparison with MATERIALIZED/EPHEMERAL
or column with default expression.

Ref: https://github.com/ClickHouse/ClickHouse/pull/47138

Co-authored-by: Azat Khuzhin <a3at.mail@gmail.com>
2023-05-15 15:39:58 +02:00
..
clickhouse_path/format_schemas Test for issue #26643 2021-10-04 14:38:10 +00:00
configs Change to S3 cfg syntax 2023-02-23 20:04:41 +00:00
__init__.py Move all folders inside /dbms one level up (#9974) 2020-04-02 02:51:21 +03:00
kafka_pb2.py Update black version, run it for the repository 2023-03-24 11:54:38 +01:00
message_with_repeated_pb2.py Update black version, run it for the repository 2023-03-24 11:54:38 +01:00
social_pb2.py Update black version, run it for the repository 2023-03-24 11:54:38 +01:00
test_kafka_json.reference Move all folders inside /dbms one level up (#9974) 2020-04-02 02:51:21 +03:00
test_kafka_virtual1.reference Move all folders inside /dbms one level up (#9974) 2020-04-02 02:51:21 +03:00
test_kafka_virtual2.reference Update tests 2020-07-31 00:24:14 +03:00
test.py Allow using Alias column type for KafkaEngine 2023-05-15 15:39:58 +02:00