aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/golden/udf_abs-1-eeb77ae8a0dcebbc0991923ca0932072
blob: c2fb6dc49322d751fa3f58a1dd6651a75369f698 (plain) (blame)
1
2
3
4
5
6
abs(x) - returns the absolute value of x
Example:
  > SELECT abs(0) FROM src LIMIT 1;
  0
  > SELECT abs(-5) FROM src LIMIT 1;
  5