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

Add datetime parsing for executing UDFs at timestamps. #653

Merged
merged 3 commits into from
Sep 19, 2024

Commits on Sep 17, 2024

  1. Add datetime parsing for executing UDFs at timestamps.

    This change adds the initial step for executing UDFs at timestamps.
    To allow users to specify a timestamp of a registered UDF to use,
    we add `@` followed by a timestamp to the name of the UDF.
    
    For example, to execute the version of `my/udf` as it was as of
    2023-06-17 at 07:16 UTC, they would execute:
    
        "my/udf@2023-06-17 07:16"
    
    This is unambiguous and avoids the need to add a new parameter, which
    would be difficult to name and could shadow parameters in user code.
    thetorpedodog committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    004d9be View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. Configuration menu
    Copy the full SHA
    049a232 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d993842 View commit details
    Browse the repository at this point in the history