Box3D value (six doubles: xmin, ymin, zmin, xmax, ymax, zmax).
Geometries without a Z dimension fold into zmin = zmax = 0, matching PostGIS. ST_Box3D is the 3D counterpart to ST_Box2D; it always returns a Box3D value that serializes to a struct of six non-nullable doubles and round-trips through Parquet without WKB overhead.
CAST(geom AS box3d).
Returns NULL for NULL or empty geometry input.
Signatures
Parameters
The geometry whose 3D bounding box is returned.
Return type
The 3D bounding box as a
Box3D value.
