VISTALL / database-navigator

Automatically exported from code.google.com/p/database-navigator
1 stars 0 forks source link

PLSQL Params corrupted on reformat code #47

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1. Create procedure which calls other procedure with named parameters. For 
example:
    PLOG.init(PLEVEL => PLOG.LWARN);

2. Reformat code (cmd-shift-L)

What is the expected output? What do you see instead?

Expected as-is, but it becomes:
   PLOG.init (PLEVEL = > PLOG.LWARN);

Which of course is invalid PLSQL code.

What version of the product are you using? On what operating system?
IntelliJ 13, MacOSX, Plugin version 3.0.2671

Original issue reported on code.google.com by st...@debruijn.ws on 19 Feb 2014 at 12:02