changeset 2133:e722bcc42eab

Fix missing SQL name-mangling in table initialization
author Istvan Chung <istvan@vivatropolis.org>
date Thu, 23 Apr 2015 16:37:15 -0400
parents 7b508cd0dbf9
children 752e5efe9da9
files src/monoize.sml
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/monoize.sml	Sun Apr 12 14:28:27 2015 -0400
+++ b/src/monoize.sml	Thu Apr 23 16:37:15 2015 -0400
@@ -4682,8 +4682,8 @@
                                      (L'.EDml (str
                                                    (foldl (fn ((x, _), s) =>
                                                               s ^ ", " ^ Settings.mangleSql x ^ " = NULL")
-                                                          ("UPDATE uw_"
-                                                           ^ tab
+                                                          ("UPDATE "
+                                                           ^ Settings.mangleSql tab
                                                            ^ " SET "
                                                            ^ Settings.mangleSql x
                                                                       ^ " = NULL")