Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SEASON Handler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Agroclim
AgroMetInfo
SEASON Handler
Merge requests
!31
Resolve "mauvaise valeur d'indicateur au 31/12/2024"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "mauvaise valeur d'indicateur au 31/12/2024"
12-supprimer-valeur-jour-366
into
main
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Olivier Maury
requested to merge
12-supprimer-valeur-jour-366
into
main
2 months ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Closes
#12 (closed)
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
ce7ec3bc
1 commit,
2 months ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
sql/schema.functions.sql
+
1
−
1
Options
@@ -19,7 +19,7 @@ FROM %1$s AS s
JOIN
agrometinfo
.
"indicator"
AS
i
ON
i
.
code
=
s
.
"indicator"
JOIN
agrometinfo
.
"period"
AS
p
ON
p
.
id
=
i
.
"period"
AND
p
.
phase
=
s
.
phase
LEFT
JOIN
agrometinfo
.
normalvalue
AS
n
ON
n
.
"indicator"
=
i
.
id
AND
n
.
cell
=
s
.
cell
AND
n
.
doy
=
EXTRACT
(
doy
FROM
s
.
enddate
)
WHERE
s
.
category
=
'indicator'
WHERE
s
.
category
=
'indicator'
AND
EXTRACT
(
DOY
FROM
date
)
!=
366
ORDER
BY
s
.
enddate
,
s
.
cell
,
i
.
id
ON
CONFLICT
ON
CONSTRAINT
"UK_dailyvalue"
DO
UPDATE
SET
computedvalue
=
EXCLUDED
.
computedvalue
,
comparedvalue
=
EXCLUDED
.
comparedvalue
,
created
=
CURRENT_TIMESTAMP
;
Loading