Sha256: 8b8186d0000e9cf206c84b03a96a6c8d8f6596d4ff51ea2f89bd2d95d59df87f
Contents?: true
Size: 821 Bytes
Versions: 8
Compression:
Stored size: 821 Bytes
Contents
# Old SQL Example Report Design Document # # Text not in quotes are column names from the SQL query # Quoted text are labels that will appear in the report. # Expressions like ( id + id ) * 10 below must be single # space delimited. So (id+id) will not parse correctly. # # NaN and Infinity are returned as zero. # # Comments are lines beginning with a hash #. They are # stripped when this document is parsed. # # Values (either columns or expressions) are rounded by default. # To disable this set round_report_values to false in # config/initializers/old_sql.rb. You can also change the # precision, which is 2 by default. id,name "Example Math Operation",id + id "Totals","..." "Expression",( id + id ) * 10 "Divide by Zero 1",0 / 0 "Divide by Zero 2",1.0 / 0 "Divide by Zero 3",0.0 / 0.0 "Rounding",200.0 / 43.0
Version data entries
8 entries across 8 versions & 1 rubygems