Skip to content

Commit

Permalink
removing conversion of NULL to 0, why was this in there
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanbeaudette committed Jun 2, 2021
1 parent b71d1cc commit e8cc5d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/SDA_properties.R
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ get_SDA_property <-
top_depth, top_depth,
bottom_depth, bottom_depth,
top_depth, top_depth,
paste0(sprintf("CAST (ISNULL (%s , 0) AS decimal (5,2)) AS %s", property, property), collapse=", "),
paste0(sprintf("CAST (%s AS decimal (5,2)) AS %s", property, property), collapse=", "),
where_clause,
top_depth, bottom_depth,
sprintf("SELECT #main.areasymbol, #main.musym, #main.muname, #main.mukey,
Expand Down

0 comments on commit e8cc5d5

Please sign in to comment.