Skip to content

Commit f8afc39

Browse files
committed
Merge branch 'timestamp-17998' into jiff-proto
# Conflicts: # datafusion/functions/Cargo.toml # datafusion/functions/benches/to_timestamp.rs # datafusion/functions/src/datetime/common.rs # datafusion/functions/src/datetime/to_date.rs # datafusion/functions/src/datetime/to_timestamp.rs # datafusion/sqllogictest/test_files/to_timestamp_timezone.slt # docs/source/user-guide/sql/scalar_functions.md
2 parents afb8e80 + 71fe6d3 commit f8afc39

455 files changed

Lines changed: 10036 additions & 4579 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/audit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ jobs:
4040
security_audit:
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
43+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4444
- name: Install cargo-audit
45-
uses: taiki-e/install-action@763e3324d4fd026c9bd284c504378585777a87d5 # v2.62.57
45+
uses: taiki-e/install-action@92e6dd1c202153a204d471a3c509bf1e03dcfa44 # v2.62.61
4646
with:
4747
tool: cargo-audit
4848
- name: Run audit check

.github/workflows/dependencies.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
container:
4545
image: amd64/rust
4646
steps:
47-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
47+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4848
with:
4949
submodules: true
5050
fetch-depth: 1
@@ -62,7 +62,7 @@ jobs:
6262
container:
6363
image: amd64/rust
6464
steps:
65-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
65+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
6666
- name: Install cargo-machete
6767
run: cargo install cargo-machete --version ^0.9 --locked
6868
- name: Detect unused dependencies

.github/workflows/dev.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ jobs:
3232
runs-on: ubuntu-latest
3333
name: Check License Header
3434
steps:
35-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
35+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3636
- name: Install HawkEye
37+
# This CI job is bound by installation time, use `--profile dev` to speed it up
3738
run: cargo install hawkeye --version 6.2.0 --locked --profile dev
3839
- name: Run license header check
3940
run: ci/scripts/license_header.sh
@@ -42,8 +43,8 @@ jobs:
4243
name: Use prettier to check formatting of documents
4344
runs-on: ubuntu-latest
4445
steps:
45-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
46-
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
46+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
47+
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
4748
with:
4849
node-version: "20"
4950
- name: Prettier check
@@ -57,3 +58,18 @@ jobs:
5758
README.md \
5859
CONTRIBUTING.md
5960
git diff --exit-code
61+
62+
typos:
63+
name: Spell Check with Typos
64+
runs-on: ubuntu-latest
65+
steps:
66+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
67+
with:
68+
persist-credentials: false
69+
# Version fixed on purpose. It uses heuristics to detect typos, so upgrading
70+
# it may cause checks to fail more often.
71+
# We can upgrade it manually once a while.
72+
- name: Install typos-cli
73+
run: cargo install typos-cli --locked --version 1.37.0
74+
- name: Run typos check
75+
run: ci/scripts/typos_check.sh

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout docs sources
35-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
35+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3636

3737
- name: Checkout asf-site branch
38-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
38+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3939
with:
4040
ref: asf-site
4141
path: asf-site

.github/workflows/docs_pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
name: Test doc build
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
43+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4444
with:
4545
submodules: true
4646
fetch-depth: 1

.github/workflows/extended.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-latest
7070
# note: do not use amd/rust container to preserve disk space
7171
steps:
72-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
72+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
7373
with:
7474
ref: ${{ github.event.inputs.pr_head_sha }} # will be empty if triggered by push
7575
submodules: true
@@ -93,7 +93,7 @@ jobs:
9393
runs-on: ubuntu-latest
9494
# note: do not use amd/rust container to preserve disk space
9595
steps:
96-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
96+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
9797
with:
9898
ref: ${{ github.event.inputs.pr_head_sha }} # will be empty if triggered by push
9999
submodules: true
@@ -137,7 +137,7 @@ jobs:
137137
container:
138138
image: amd64/rust
139139
steps:
140-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
140+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
141141
with:
142142
ref: ${{ github.event.inputs.pr_head_sha }} # will be empty if triggered by push
143143
submodules: true
@@ -158,7 +158,7 @@ jobs:
158158
container:
159159
image: amd64/rust
160160
steps:
161-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
161+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
162162
with:
163163
ref: ${{ github.event.inputs.pr_head_sha }} # will be empty if triggered by push
164164
submodules: true

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
contents: read
4040
pull-requests: write
4141
steps:
42-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
42+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4343

4444
- name: Assign GitHub labels
4545
if: |

.github/workflows/large_files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
check-files:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
32+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3333
with:
3434
fetch-depth: 0
3535
- name: Check size of new Git objects

0 commit comments

Comments
 (0)