Julian Hyde created CALCITE-5546:
------------------------------------
Summary: 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
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)