summaryrefslogtreecommitdiff
path: root/src/postgres.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2013-12-03 16:54:04 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2013-12-03 16:54:04 -0500
commitd89fd37a66ab73ea7eba5e2574c4e679c4026f0b (patch)
treeae916e054118cec51b56e8eeb0f0a6f1157cb648 /src/postgres.sml
parentabf4da5f80ce9ba5f693aa8fc2493eb28cd8e6f3 (diff)
Increase precision for rendering floats to SQL
Diffstat (limited to 'src/postgres.sml')
-rw-r--r--src/postgres.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/postgres.sml b/src/postgres.sml
index 44101527..41529173 100644
--- a/src/postgres.sml
+++ b/src/postgres.sml
@@ -376,7 +376,7 @@ fun init {dbstring, prepared = ss, tables, views, sequences} =
newline,
box [string "uw_sqlfmtInt = \"%lld::int8%n\";",
newline,
- string "uw_sqlfmtFloat = \"%g::float8%n\";",
+ string "uw_sqlfmtFloat = \"%.16g::float8%n\";",
newline,
string "uw_Estrings = 1;",
newline,