diff options
author | Bob Arnson <bob@firegiant.com> | 2021-12-19 00:01:29 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2021-12-19 14:12:31 -0500 |
commit | 32fb169d4c8f5065e43b1351cc3a5b4a3d528588 (patch) | |
tree | dfb5d8b061993386403b4e95d7bd5e77767d39bd /src/ext/NetFx/ca | |
parent | 7d0391599aa451f774e2db76528df266abedb004 (diff) | |
download | wix-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.cpp | 2 |
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 = | |||
23 | enum eFileId { fiFile = 1 }; | 23 | enum eFileId { fiFile = 1 }; |
24 | 24 | ||
25 | LPCWSTR vcsNgenQuery = | 25 | LPCWSTR 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_`"; |
28 | enum eNgenQuery { ngqFile = 1, ngqId, ngqPriority, ngqAttributes, ngqFileApp, ngqDirAppBase, ngqComponent }; | 28 | enum eNgenQuery { ngqFile = 1, ngqId, ngqPriority, ngqAttributes, ngqFileApp, ngqDirAppBase, ngqComponent }; |
29 | 29 | ||