Peter Eisentraut <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> We keep hoping someone will step up to the plate and rewrite it, >> instead. Per previous discussion, the type really ought to be a thin >> layer over "numeric", with most likely no operations of its own >> except I/O conversion.
> And what would it do with it? Add a currency symbol? Which one? Which > form? Where? Format the numbers some way? The idea behind the money type is to format per the lc_monetary locale setting, which seems perfectly reasonable to me. Further down the road we might want per-column locale control, but when we haven't solved that for text columns it's hardly fair to demand it of type money. The big beef against the existing money type, IMHO, is the decision to make the internal representation int32, which makes it hopelessly overflow-prone. Fix that and I'd stop telling people not to use it. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])