On Fri, Jan 21, 2005 at 12:02:09 +0100, Marco Colombo <pgsql@xxxxxxxxxx> wrote: > On Fri, 21 Jan 2005, Greg Stark wrote: > > Anyway, think of floats. If you want do to FP maths fast, you need to use > the native format supported by the CPU. When you dump, you get a text > form of the FP number, and when you restore on a different platform you > may get a _different_ number. And you have to live with it. Kiss goodbye > to your "indentical database". If you are going to another system that uses the same floating point representation, you should get the same number. pg_dump writes out enough digits that the exact number can be recovered when the dump has been reloaded. This has been the case since 7.3. If you move the data to a machine with a different floating point representation you might get a different number even if the original number could be represented exactly in the new representation. ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@xxxxxxxxxxxxxx so that your message can get through to the mailing list cleanly