summaryrefslogtreecommitdiff
path: root/src/ext/NetFx/ca
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-12-19 00:01:29 -0500
committerBob Arnson <github@bobs.org>2021-12-19 14:12:31 -0500
commit32fb169d4c8f5065e43b1351cc3a5b4a3d528588 (patch)
treedfb5d8b061993386403b4e95d7bd5e77767d39bd /src/ext/NetFx/ca
parent7d0391599aa451f774e2db76528df266abedb004 (diff)
downloadwix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.tar.gz
wix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.tar.bz2
wix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.zip
Consistent-ify primary key column names.
Diffstat (limited to 'src/ext/NetFx/ca')
-rw-r--r--src/ext/NetFx/ca/netfxca.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/NetFx/ca/netfxca.cpp b/src/ext/NetFx/ca/netfxca.cpp
index 3a71babf..1182464e 100644
--- a/src/ext/NetFx/ca/netfxca.cpp
+++ b/src/ext/NetFx/ca/netfxca.cpp
@@ -23,7 +23,7 @@ LPCWSTR vcsFileId =
23enum eFileId { fiFile = 1 }; 23enum eFileId { fiFile = 1 };
24 24
25LPCWSTR vcsNgenQuery = 25LPCWSTR vcsNgenQuery =
26 L"SELECT `Wix4NetFxNativeImage`.`File_`, `Wix4NetFxNativeImage`.`Wix4NetFxNativeImage`, `Wix4NetFxNativeImage`.`Priority`, `Wix4NetFxNativeImage`.`Attributes`, `Wix4NetFxNativeImage`.`File_Application`, `Wix4NetFxNativeImage`.`Directory_ApplicationBase`, `File`.`Component_` " 26 L"SELECT `Wix4NetFxNativeImage`.`File_`, `Wix4NetFxNativeImage`.`NetFxNativeImage`, `Wix4NetFxNativeImage`.`Priority`, `Wix4NetFxNativeImage`.`Attributes`, `Wix4NetFxNativeImage`.`File_Application`, `Wix4NetFxNativeImage`.`Directory_ApplicationBase`, `File`.`Component_` "
27 L"FROM `Wix4NetFxNativeImage`, `File` WHERE `File`.`File`=`Wix4NetFxNativeImage`.`File_`"; 27 L"FROM `Wix4NetFxNativeImage`, `File` WHERE `File`.`File`=`Wix4NetFxNativeImage`.`File_`";
28enum eNgenQuery { ngqFile = 1, ngqId, ngqPriority, ngqAttributes, ngqFileApp, ngqDirAppBase, ngqComponent }; 28enum eNgenQuery { ngqFile = 1, ngqId, ngqPriority, ngqAttributes, ngqFileApp, ngqDirAppBase, ngqComponent };
29 29