[PATCH 8/13] msi: The HOLD keyword implies a temporary table, whereas database importing should lead to permanent tables, so remove the HOLD keyword.

Robert Shearman rob at codeweavers.com
Mon Apr 23 02:23:13 CDT 2007


---
  dlls/msi/database.c |    2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)
-------------- next part --------------
diff --git a/dlls/msi/database.c b/dlls/msi/database.c
index ea3e964..875f440 100644
--- a/dlls/msi/database.c
+++ b/dlls/msi/database.c
@@ -423,7 +423,7 @@ static LPWSTR msi_build_createsql_postlu
     DWORD size, key_size, i;
 
     static const WCHAR key_fmt[] = {'`','%','s','`',',',' ',0};
-    static const WCHAR postlude_fmt[] = {'P','R','I','M','A','R','Y',' ','K','E','Y',' ','%','s',')',' ','H','O','L','D',0};
+    static const WCHAR postlude_fmt[] = {'P','R','I','M','A','R','Y',' ','K','E','Y',' ','%','s',')',0};
 
     for (i = 0, size = 1; i < num_keys; i++)
         size += lstrlenW(key_fmt) + lstrlenW(primary_keys[i]) - 2;


More information about the wine-patches mailing list