sybase_iq15.4.properties 845 B

12345678910111213141516171819202122
  1. #IBM Confidential
  2. #
  3. #OCO Source Materials
  4. #
  5. #BI and PM: rdbmscert
  6. #
  7. #(C) Copyright IBM Corp. 2009,2016
  8. #
  9. #The source code for this program is not published or otherwise divested of its trade secrets,
  10. #irrespective of what has been deposited with the U.S. Copyright Office
  11. #
  12. #
  13. # Numeric scalar functions
  14. #
  15. functions.Round[double,any]=CASE WHEN (%1$s) < 0 THEN (CAST( ( (%1$s) * POWER( 10e0, (%2$s) ) - 0.5 ) AS BIGINT ) / POWER( 10e0, (%2$s) ) ) ELSE (CAST( ( (%1$s) * POWER( 10e0, (%2$s) ) + 0.5 ) AS BIGINT ) / POWER( 10e0, (%2$s) ) ) END
  16. functions.Round[float,any]=CASE WHEN (%1$s) < 0 THEN (CAST( ( (%1$s) * POWER( 10e0, (%2$s) ) - 0.5 ) AS BIGINT ) / POWER( 10e0, (%2$s) ) ) ELSE (CAST( ( (%1$s) * POWER( 10e0, (%2$s) ) + 0.5 ) AS BIGINT ) / POWER( 10e0, (%2$s) ) ) END
  17. #
  18. #olsp functions
  19. #
  20. olap.FirstValue[any]=
  21. olap.LastValue[any]=