Skip to content

Commit

Permalink
Remove stackCoercion.sql, EXCEPT and INTERSECT.
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyum committed Dec 19, 2017
1 parent d4380bf commit cce792d
Show file tree
Hide file tree
Showing 6 changed files with 113 additions and 4,452 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,19 +121,6 @@ SELECT cast(1 as string) / cast(1 as boolean) FROM t;
SELECT cast(1 as string) / cast('2017-12-11 09:30:00.0' as timestamp) FROM t;
SELECT cast(1 as string) / cast('2017-12-11 09:30:00' as date) FROM t;

SELECT cast(1 as string) / cast(1 as tinyint) FROM t;
SELECT cast(1 as string) / cast(1 as smallint) FROM t;
SELECT cast(1 as string) / cast(1 as int) FROM t;
SELECT cast(1 as string) / cast(1 as bigint) FROM t;
SELECT cast(1 as string) / cast(1 as float) FROM t;
SELECT cast(1 as string) / cast(1 as double) FROM t;
SELECT cast(1 as string) / cast(1 as decimal(10, 0)) FROM t;
SELECT cast(1 as string) / cast(1 as string) FROM t;
SELECT cast(1 as string) / cast('1' as binary) FROM t;
SELECT cast(1 as string) / cast(1 as boolean) FROM t;
SELECT cast(1 as string) / cast('2017-12-11 09:30:00.0' as timestamp) FROM t;
SELECT cast(1 as string) / cast('2017-12-11 09:30:00' as date) FROM t;

SELECT cast('1' as binary) / cast(1 as tinyint) FROM t;
SELECT cast('1' as binary) / cast(1 as smallint) FROM t;
SELECT cast('1' as binary) / cast(1 as int) FROM t;
Expand Down

This file was deleted.

Loading

0 comments on commit cce792d

Please sign in to comment.