~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/decimal.cc

  • Committer: Tim Martin
  • Date: 2010-09-12 09:42:36 UTC
  • mto: (1759.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1760.
  • Revision ID: timm@macaque-20100912094236-jxd4jeb7c3fhrrct
Added doxygen header to decimal.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
 
16
/** @file
 
17
 *
 
18
 * @brief  SQL standard-compliant decimal number handling
 
19
 *
 
20
 * @note
 
21
 * This library implements SQL standard "exact numeric" type
 
22
 * and is not at all generic, but rather intentinally crippled to
 
23
 * follow the standard :) 
 
24
 */
 
25
 
16
26
/*
17
27
=======================================================================
18
 
  NOTE: this library implements SQL standard "exact numeric" type
19
 
  and is not at all generic, but rather intentinally crippled to
20
 
  follow the standard :)
21
 
=======================================================================
22
28
  Quoting the standard
23
29
  (SQL:2003, Part 2 Foundations, aka ISO/IEC 9075-2:2003)
24
30