Added casts between half to double precision [skip ci]

This commit is contained in:
Andrew Kane
2023-12-04 12:49:28 -08:00
parent 95eff595f0
commit d09aa9f873
5 changed files with 75 additions and 0 deletions

View File

@@ -21,6 +21,9 @@ SELECT 'Infinity'::real::half;
SELECT '1.5'::half::real;
SELECT '1.5'::real::half;
SELECT '1.5'::half::double precision;
SELECT '1.5'::double precision::half;
SELECT '1.5'::half::numeric;
SELECT '1.5'::numeric::half;