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

feat: extract (epoch from col) #5555

Merged
merged 2 commits into from
Mar 13, 2023
Merged

feat: extract (epoch from col) #5555

merged 2 commits into from
Mar 13, 2023

Conversation

Weijun-H
Copy link
Contributor

Which issue does this PR close?

Closes #2785

Rationale for this change

Explain #2785

What changes are included in this PR?

Add EXTRACT( EPOCH FROM COL)

Are these changes tested?

Are there any user-facing changes?

@github-actions github-actions bot added core Core datafusion crate physical-expr Physical Expressions labels Mar 11, 2023
Copy link
Contributor

@comphead comphead left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add more tests to cover null values and different scales

@@ -1313,6 +1313,23 @@ async fn test_extract_date_part() -> Result<()> {
Ok(())
}

#[tokio::test]
async fn test_extract_epoch() -> Result<()> {
// test_expression!(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @Weijun-H are this commented tests needed?

}
}
}
_ => return Err(DataFusionError::Internal("Invalid data type".to_string())),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it might be useful to output the wrong datatype in error message

Copy link
Contributor

@alamb alamb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @Weijun-H -- I double checked the answers against postgres and it looks great.

postgres=# select extract(epoch from '1870-01-01T07:29:10.256'::timestamp);
      extract
--------------------
 -3155646649.744000
(1 row)

postgres=# select extract(epoch from '2000-01-01T00:00:00.000'::timestamp);
     extract
------------------
 946684800.000000
(1 row)


postgres=# select extract(epoch from null::timestamp);
 extract
---------

(1 row)

if array.is_null(i) {
b.append_null();
} else {
let scale = match tu {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I double checked that this is consistent with postgres docs: https://www.postgresql.org/docs/8.1/functions-datetime.html. 👍

@alamb alamb merged commit 146a949 into apache:main Mar 13, 2023
@alamb
Copy link
Contributor

alamb commented Mar 13, 2023

Thank you @comphead for the review

@ursabot
Copy link

ursabot commented Mar 13, 2023

Benchmark runs are scheduled for baseline = 1f8ede5 and contender = 146a949. 146a949 is a master commit associated with this PR. Results will be available as each benchmark for each run completes.
Conbench compare runs links:
[Skipped ⚠️ Benchmarking of arrow-datafusion-commits is not supported on ec2-t3-xlarge-us-east-2] ec2-t3-xlarge-us-east-2
[Skipped ⚠️ Benchmarking of arrow-datafusion-commits is not supported on test-mac-arm] test-mac-arm
[Skipped ⚠️ Benchmarking of arrow-datafusion-commits is not supported on ursa-i9-9960x] ursa-i9-9960x
[Skipped ⚠️ Benchmarking of arrow-datafusion-commits is not supported on ursa-thinkcentre-m75q] ursa-thinkcentre-m75q
Buildkite builds:
Supported benchmarks:
ec2-t3-xlarge-us-east-2: Supported benchmark langs: Python, R. Runs only benchmarks with cloud = True
test-mac-arm: Supported benchmark langs: C++, Python, R
ursa-i9-9960x: Supported benchmark langs: Python, R, JavaScript
ursa-thinkcentre-m75q: Supported benchmark langs: C++, Java

@andygrove andygrove added the enhancement New feature or request label Mar 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core Core datafusion crate enhancement New feature or request physical-expr Physical Expressions
Projects
None yet
Development

Successfully merging this pull request may close these issues.

EXTRACT(EPOCH from column)
5 participants