You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dockerzhang
changed the title
[Feature][SDK]Transform SQL support Fibonacci function
[Feature][SDK] Transform SQL support Fibonacci function
Sep 3, 2024
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?
Code of Conduct
The text was updated successfully, but these errors were encountered: