Edit generates invalid DDL statement for column names containing spaces

Scenario: I have a view with column names contain spaces:

SQL:
create view v_plsqldev_bug(id, "name containing spaces")
as
select 1, 'hello'
  from dual;

Right-clicking this view in the Object browser and choosing "Edit" generates this (invalid) SQL Statement:

SQL:
create or replace view v_plsqldev_bug
(id, name containing spaces)
as
select 1, 'hello'
  from dual;

This is really annoying.
 
Back
Top