table/view column names completion

jto

Member²
Hello,
I've found a small bug related to table/view columns completion in 6.0.4.906 (full version).
Example
create view test as select dummy "My test" from dual

then if you type test. in editor, the 'my test' is displayed and if you select it it's pasted without quotation marks and in lowercase. Could that be fixed?
Another minor but quite annoying thing is the single line comment for tables (in Edit table window). Could it be multi line, please?

best regards
J.
 
then if you type test. in editor, the 'my test' is displayed and if you select it it's pasted without quotation marks and in lowercase. Could that be fixed?
We'll fix it.
Another minor but quite annoying thing is the single line comment for tables (in Edit table window). Could it be multi line, please?
I have added this to the list of enhancement requests.
 
hello again Marco,
I suppose this is caused by the same bug as mentioned above but it might not be...
if you create view with column name(s) defined in quotation marks, e.g.
create or replace view test ("My test") as select dummy from dual

then extracted DDL looks like
create or replace view test
(my test)
as select dummy from dual

the quotations marks are lost

regards
Jiri
 
Back
Top