Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature][SDK] Transform SQL support Fibonacci function #11002

Open
2 tasks done
youzhi886 opened this issue Sep 3, 2024 · 0 comments · May be fixed by #11003
Open
2 tasks done

[Feature][SDK] Transform SQL support Fibonacci function #11002

youzhi886 opened this issue Sep 3, 2024 · 0 comments · May be fixed by #11003
Milestone

Comments

@youzhi886
Copy link

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?

  • Yes, I am willing to submit a PR!

Code of Conduct

@dockerzhang dockerzhang changed the title [Feature][SDK]Transform SQL support Fibonacci function [Feature][SDK] Transform SQL support Fibonacci function Sep 3, 2024
@aloyszhang aloyszhang modified the milestones: 1.14.0, 2.1.0 Oct 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants