[
https://issues.apache.org/jira/browse/CALCITE-5546?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Julian Hyde reassigned CALCITE-5546:
------------------------------------
Assignee: Julian Hyde
> 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
> Assignee: 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)