Menu

#105 Variable named timestamp breaks parser

0.8
open
nobody
None
2
2014-10-06
2014-10-06
Eirik Lygre
No

Assigning to and from a variable or parameter named "timestamp" breaks the parser. The declaration itself is OK, it's only the assignment that fails. In the example below, comment back in either assignment and it fails.

create or replace procedure ely_temp
IS
   timestamp date;
   t         date;
BEGIN
   null;
   -- timestamp := t;
   -- t := timestamp;
END;
/

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.