Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
alexisig committed Sep 10, 2024
1 parent aaba21b commit e80fa45
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ select
millesimes.last_millesime,
coalesce(admin_express_commune.name, commune.name) as name, -- noqa: L029
coalesce(admin_express_commune.srid_source, 2154) as srid_source,
coalesce(artif_commune.surface is not NULL, FALSE) as ocsge_available,
case
when artif_commune.surface is not NULL then TRUE
when commune.name is NULL then TRUE
else FALSE
end as ocsge_available,
case
when
artif_commune.surface is not NULL
Expand Down

0 comments on commit e80fa45

Please sign in to comment.