bugfix: lnnvl raw expr printer

This commit is contained in:
obdev
2023-09-01 04:44:17 +00:00
committed by ob-robot
parent 9a3e84dc86
commit 4c232da560
3 changed files with 37 additions and 1 deletions

View File

@ -19,5 +19,14 @@ select lnnvl(0) from dual;
select lnnvl(NULL) from dual;
select lnnvl('abc') from dual;
--disable_warnings
drop view if exists v1;
--enable_warnings
create view v1 as select lnnvl(1) from dual;
show create view v1;
explain select * from v1;
select * from v1;
drop view v1;
connection syscon;
--sleep 2