Update 02966_float32_promotion.sql

This commit is contained in:
Raúl Marín 2024-01-13 12:56:14 +01:00 committed by GitHub
parent f95254bde6
commit 8049d3560d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
-- https://github.com/ClickHouse/ClickHouse/issues/58680
CREATE OR REPLACE TABLE f32_table (my_field Float32) ENGINE=Memory();
DROP TABLE IF EXISTS f32_table;
CREATE TABLE f32_table (my_field Float32) ENGINE=Memory();
INSERT INTO f32_table values ('49.9');
SELECT * FROM f32_table where my_field = '49.9';
DROP TABLE f32_table;
DROP TABLE f32_table;