blob: 0bfa7ec5462799ca065dd7805d2665d0ae24f176 [file] [log] [blame]
DESCRIBE FUNCTION sha1;
DESC FUNCTION EXTENDED sha;
explain select sha1('ABC');
select
sha1('ABC'),
sha(''),
sha(binary('ABC')),
sha1(binary('')),
sha1(cast(null as string)),
sha(cast(null as binary)),
sha1(null);