-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
colexec: add support for Pow binary operator #49465
Labels
A-sql-vec
SQL vectorized engine
C-enhancement
Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)
good first issue
Comments
9 tasks
I would love to give it a go if no one else is working on it! |
@Arun4rangan please, that would be great! I'll assign the issue to you to indicate that it is currently being worked on. |
sooryranga
added a commit
to sooryranga/cockroach
that referenced
this issue
Jun 12, 2020
This commit resolves: cockroachdb#49465 Previously, there was no support for Pow (**) in vectorized engine. This commit adds Pow operator. I added Pow to binaryOpMethods and registered inputs/outputs for this operator. Release note (sql change): Vectorized engine now support Pow operator.
sooryranga
added a commit
to sooryranga/cockroach
that referenced
this issue
Jun 15, 2020
This commit resolves: cockroachdb#49465 Previously, there was no support for Pow (**) in vectorized engine. This commit adds Pow operator. I added Pow to binaryOpMethods and registered inputs/outputs for this operator. Release note (sql change): Vectorized engine now support Pow operator.
sooryranga
added a commit
to sooryranga/cockroach
that referenced
this issue
Jun 16, 2020
This commit resolves: cockroachdb#49465 Previously, there was no support for Pow (**) in vectorized engine. This commit adds Pow operator. I added Pow to binaryOpMethods and registered inputs/outputs for this operator. Release note (sql change): Vectorized engine now support Pow operator.
sooryranga
added a commit
to sooryranga/cockroach
that referenced
this issue
Jun 16, 2020
This commit resolves: cockroachdb#49465 Previously, there was no support for Pow (^) in vectorized engine. This commit adds Pow operator. I added Pow to binaryOpMethods and registered inputs/outputs for this operator. Release note (sql change): Vectorized engine now support Pow operator.
sooryranga
added a commit
to sooryranga/cockroach
that referenced
this issue
Jun 16, 2020
This commit resolves: cockroachdb#49465 Previously, there was no support for Pow (^) in vectorized engine. This commit adds Pow operator. I added Pow to binaryOpMethods and registered inputs/outputs for this operator. Release note (sql change): Vectorized engine now support Pow operator.
sooryranga
added a commit
to sooryranga/cockroach
that referenced
this issue
Jun 18, 2020
This commit resolves: cockroachdb#49465 Previously, there was no support for Pow (^) in vectorized engine. This commit adds Pow operator. I added Pow to binaryOpMethods and registered inputs/outputs for this operator. Release note (sql change): Vectorized engine now support Pow operator.
craig bot
pushed a commit
that referenced
this issue
Jun 18, 2020
50143: colexec: add support for Pow binary operator r=yuzefovich a=Arun4rangan This commit resolves: #49465 Previously, there was no support for Pow (**) in vectorized engine. This commit adds Pow operator. I added Pow to binaryOpMethods and registered inputs/outputs for this operator. Release note (sql change): Vectorized engine now support Pow operator. Co-authored-by: Arun Ranganathan <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-sql-vec
SQL vectorized engine
C-enhancement
Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)
good first issue
Add support for
Pow
binary operator. For more details, see #49463.The text was updated successfully, but these errors were encountered: