ClickHouse/tests/queries/0_stateless/00196_float32_formatting.sql

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

9 lines
264 B
MySQL
Raw Normal View History

SELECT 21.99;
SELECT toFloat32(21.99);
SELECT visibleWidth(21.99);
SELECT visibleWidth(toFloat32(21.99));
SELECT materialize(21.99);
SELECT toFloat32(materialize(21.99));
SELECT visibleWidth(materialize(21.99));
SELECT visibleWidth(toFloat32(materialize(21.99)));