@jeffsmith-oracle
We have just upgraded to Sql Developer Version 24.3.1.347. In the custom format included in standard delivery at the end there is:
timestamp: runOnce & false -> {
var date = new java.util.Date();
var formatted = "/* Formatted by SqlDev on ";
var index = target.input.indexOf(formatted);
if( index != 0 )
struct.putNewline(0, formatted+date+" */\n");
else {
var timestampEnd = target.input.indexOf(" */");
target.input = formatted+date+target.input.substring(timestampEnd);
}
}
We have removed the “& false” in order to get a comment at the top of our code.
This does not seem to work anymore. Does anybody else have the same problem?
Is it related to following post?
https://forums.oracle.com/ords/apexds/post/javascript-is-broken-in-sqldev-24-3-0-284-formatter-with-ar-3464
Appreciate any help