File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
sql/core/src/test/resources/sql-tests/results Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -157,31 +157,31 @@ NULL
157157-- !query 19
158158select 5 div 2
159159-- !query 19 schema
160- struct<CAST((CAST(5 AS DOUBLE) / CAST(2 AS DOUBLE)) AS BIGINT):bigint >
160+ struct<(5 div 2):int >
161161-- !query 19 output
1621622
163163
164164
165165-- !query 20
166166select 5 div 0
167167-- !query 20 schema
168- struct<CAST((CAST(5 AS DOUBLE) / CAST(0 AS DOUBLE)) AS BIGINT):bigint >
168+ struct<(5 div 0):int >
169169-- !query 20 output
170170NULL
171171
172172
173173-- !query 21
174174select 5 div null
175175-- !query 21 schema
176- struct<CAST((CAST(5 AS DOUBLE) / CAST(NULL AS DOUBLE)) AS BIGINT):bigint >
176+ struct<(5 div CAST(NULL AS INT)):int >
177177-- !query 21 output
178178NULL
179179
180180
181181-- !query 22
182182select null div 5
183183-- !query 22 schema
184- struct<CAST(( CAST(NULL AS DOUBLE) / CAST(5 AS DOUBLE)) AS BIGINT):bigint >
184+ struct<( CAST(NULL AS INT) div 5):int >
185185-- !query 22 output
186186NULL
187187
You can’t perform that action at this time.
0 commit comments