The code below is compiled and executed in Oracle Database 18c (18.3), but the parser (18.4.0.376) cannot parse it.
Is this some kind of problem with parsing?
declare
v date := CAST(SYS_EXTRACT_UTC(SYSTIMESTAMP) AS DATE) - (1/86400);
begin
null;
end;
