[ 
https://issues.apache.org/jira/browse/CALCITE-5546?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Hyde resolved CALCITE-5546.
----------------------------------
    Fix Version/s: 1.34.0
       Resolution: Fixed

Fixed in 
[2dba40e7|https://github.com/apache/calcite/commit/2dba40e7a0a5651eac5a30d9e0a72f178bd9bff2].

The working branch was 
[julianhyde/5526-style|https://github.com/julianhyde/calcite/tree/5526-style].

> Code style: Break long assignment expressions after '='
> -------------------------------------------------------
>
>                 Key: CALCITE-5546
>                 URL: https://issues.apache.org/jira/browse/CALCITE-5546
>             Project: Calcite
>          Issue Type: Bug
>            Reporter: Julian Hyde
>            Priority: Major
>             Fix For: 1.34.0
>
>
> Change the code style to require that long assignment expressions are broken 
> after '='. After this change,
> {code}
>     final PhysType physType = PhysTypeImpl.of(
>         implementor.getTypeFactory(),
>         getRowType(),
>         pref.prefer(JavaRowFormat.CUSTOM));
> {code}
> would be changed to
> {code}
>     final PhysType physType =
>         PhysTypeImpl.of(implementor.getTypeFactory(),
>             getRowType(),
>             pref.prefer(JavaRowFormat.CUSTOM));
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to