ClickHouse/tests/queries/0_stateless/02966_float32_promotion.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
258 B
MySQL
Raw Normal View History

2024-01-12 14:43:17 +00:00
-- https://github.com/ClickHouse/ClickHouse/issues/58680
2024-01-13 11:56:14 +00:00
DROP TABLE IF EXISTS f32_table;
CREATE TABLE f32_table (my_field Float32) ENGINE=Memory();
2024-01-12 14:43:17 +00:00
INSERT INTO f32_table values ('49.9');
SELECT * FROM f32_table where my_field = '49.9';
2024-01-13 11:56:14 +00:00
DROP TABLE f32_table;