youzhi886 opened a new issue, #11002:
URL: https://github.com/apache/inlong/issues/11002

   ### Description
   
   parent issue [Umbrella] Tencent Rhino-bird: Expand InLong Transform 
functions #10796 
   definition of Fibonacci sequence:
   F(0) = 0
   F(1) = 1
   对于 n >= 2,F(n) = F(n-1) + F(n-2)
   F(2) = 1 (1 = 1 + 0)
   F(3) = 2 (2 = 1 + 1)
   F(4) = 3 (3 = 2 + 1)
   fibonacci(numeric)--returns the nth Fibonacci number
   examples:
   fibonacci(0) = 0
   fibonacci(4) = 3
   
   ### Use case
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [X] Yes, I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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: dev-unsubscr...@inlong.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to