From 5b89c38b9f28a5d80b8ac1e211b8d4525f1f9c4e Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 08:29:18 -0600 Subject: [PATCH] =?UTF-8?q?Fix=20SQL=20date=20part=20identifier:=20day=20?= =?UTF-8?q?=E2=86=92=20doy=20(day=20of=20the=20year)=20(#6791)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Initial plan * Fix typo: day -> doy (day of the year) Co-authored-by: jstirnaman <212227+jstirnaman@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jstirnaman <212227+jstirnaman@users.noreply.github.com> --- content/shared/sql-reference/functions/time-and-date.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/shared/sql-reference/functions/time-and-date.md b/content/shared/sql-reference/functions/time-and-date.md index d116e112f..965870804 100644 --- a/content/shared/sql-reference/functions/time-and-date.md +++ b/content/shared/sql-reference/functions/time-and-date.md @@ -794,7 +794,7 @@ date_part(part, expression) - microsecond - nanosecond - dow _(day of the week)_ - - day _(day of the year)_ + - doy _(day of the year)_ - **expression**: Time expression to operate on. Can be a constant, column, or function. @@ -860,7 +860,7 @@ extract(field FROM source) - microsecond - nanosecond - dow _(day of the week)_ - - day _(day of the year)_ + - doy _(day of the year)_ - **source**: Source time expression to operate on. Can be a constant, column, or function.