Float32 | Float64 | BFloat16 Types
If you need accurate calculations, in particular if you work with financial or business data requiring a high precision, you should consider using Decimal instead.
Floating Point Numbers might lead to inaccurate results as illustrated below:
The equivalent types in ClickHouse and in C are given below:
Float32—float.Float64—double.
Float types in ClickHouse have the following aliases:
Float32—FLOAT,REAL,SINGLE.Float64—DOUBLE,DOUBLE PRECISION.
When creating tables, numeric parameters for floating point numbers can be set (e.g. FLOAT(12), FLOAT(15, 22), DOUBLE(12), DOUBLE(4, 18)), but ClickHouse ignores them.
Using floating-point numbers
- Computations with floating-point numbers might produce a rounding error.
- The result of the calculation depends on the calculation method (the processor type and architecture of the computer system).
- Floating-point calculations might result in numbers such as infinity (
Inf) and "not-a-number" (NaN). This should be taken into account when processing the results of calculations. - When parsing floating-point numbers from text, the result might not be the nearest machine-representable number.
NaN and Inf
In contrast to standard SQL, ClickHouse supports the following categories of floating-point numbers:
Inf– Infinity.
-Inf— Negative infinity.
NaN— Not a number.
See the rules for NaN sorting in the section ORDER BY clause.
NaN values in set semantics
The IEEE 754 standard defines NaN such that the scalar comparison NaN = NaN returns false.
ClickHouse follows that rule for the = operator.
However, NaN is not a single value; it is any bit pattern whose exponent is all ones and whose
mantissa is non-zero. Different operations and different CPU architectures can produce NaN
values with different sign bits or different mantissa payloads. For example:
0./0.produces aNaNwhose sign bit is 1 on most x86 platforms.- The literal
nanproduces aNaNwhose sign bit is 0. - After PR #98230, the AArch64 NEON path of
logreturns aNaNwhose sign bit differs from glibc's scalarlogon negative inputs.
Hash tables in ClickHouse compare keys byte-wise, so different NaN bit patterns hash to
different buckets and are treated as distinct values by set-semantics operations including
DISTINCT, GROUP BY, uniqExact, countDistinct, and equi-JOIN on a Float key:
This is consistent with IEEE 754 (every NaN is unequal to every other value, including itself)
but can be surprising. If you need set-semantics operations to treat all NaN values as equal,
canonicalize them in the query:
The same approach works for DISTINCT, GROUP BY, and JOIN keys.
BFloat16
BFloat16 is a 16-bit floating point data type with 8-bit exponent, sign, and 7-bit mantissa.
It is useful for machine learning and AI applications.
ClickHouse supports conversions between Float32 and BFloat16 which
can be done using the toFloat32() or toBFloat16 functions.
Most other operations are not supported.