julianhyde commented on PR #3945:
URL: https://github.com/apache/calcite/pull/3945#issuecomment-2350102912

   Maybe one method can delegate to the other. To define a type system that 
allows negative scale, people should only override the `minimumScale` method. 
`supportsNegativeScale` would delegate to it:
   
   ```
   default boolean supportsNegativeScale() {
     return minimumScale() < 0;
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to