Postgres has a setting called extra_float_digits. It determines how many digits are returned when you select a floating point number in the database. It defaults to 0 and only applies to the current connection. If it isn't set to 3, information is lost when you select a value you previously inserted.
Is there a way to set this value so that it will default to 3 in all environments? I would like it to be set to 3 when I connect via psql on the commandline and also when my application connects via a database driver.