pierre-mazieres-semarchy opened a new pull request, #3752: URL: https://github.com/apache/calcite/pull/3752
When I was working on a dummy Apache Connector (in order to understand how to use this framework), I encountered this error: ``` Suppressed: java.lang.RuntimeException: while resolving method 'toChar[class java.lang.Object]' in class class org.apache.calcite.runtime.SqlFunctions Caused by: java.lang.NoSuchMethodException: org.apache.calcite.runtime.SqlFunctions.toChar(java.lang.Object) ``` So I added the required method: `org.apache.calcite.runtime.SqlFunctions.toChar(java.lang.Object)` For information, there are already many similar methods for other primitive types (int, bool ...). So the new `toChar(Object)` method is similar to those other primitive methods -- 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]
