Git Product home page Git Product logo

Comments (3)

PhilippSalvisberg avatar PhilippSalvisberg commented on May 28, 2024

I see the point. However, defining the rules for this behaviour is not that simple since you do not want to split all functions this way. e.g.

select some_quite_long_function_name(
          a,
          b,
          c
       )
  from ...

In this case you would like to keep it this way:

select some_quite_long_function_name(a, b, c)
  from ...

I think this enhancement request is also related to the total line size like other issues #33 and #84.

Regarding the formatting of hints. This is doable based on a lexer logic only. The parse-tree given to the Arbori program does not contain comments nor hints. This means we have to find hints as I've described that in this blog post and then add a line break before the next token.

I agree this needs to be improved, but only in combination with a max-line-size-exceeded-logic.

from plsql-formatter-settings.

PhilippSalvisberg avatar PhilippSalvisberg commented on May 28, 2024

@jgebal: After closing #33 the result looks now like this:

declare
   l_value varchar2(4000);
begin
   select /*+ parallel(pd, 4) */ some_quite_long_function_name(
             another_long_function_name(
                first_Column_id
                || another_Column_id
                || third_Column_id
                || fourth_column_id
                || fifth_column
                || another_column
             )
          )
     into l_checksum
     from my_table_data pd;
end;
/

So, adding a line break after a hint would solve the issue, right?

from plsql-formatter-settings.

PhilippSalvisberg avatar PhilippSalvisberg commented on May 28, 2024

When you format this code

select /*+ parallel(t, 2) */
a from t;

the result is

select /*+ parallel(t, 2) */
       a
  from t;

But when you format this code:

select /*+ parallel(t, 2) */  a from t;

The result is

select /*+ parallel(t, 2) */  a
  from t;

The serializer component of the SQL Developer formatter preserves the whitespaces after the comment/hint up to a new line. But new lines are lost.

That's the best I can do.

from plsql-formatter-settings.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.