summaryrefslogtreecommitdiff
path: root/src/ext/Util/ca/XmlConfig.cpp
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/Util/ca/XmlConfig.cpp
parent7d0391599aa451f774e2db76528df266abedb004 (diff)
downloadwix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.tar.gz
wix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.tar.bz2
wix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.zip
Consistent-ify primary key column names.
Diffstat (limited to 'src/ext/Util/ca/XmlConfig.cpp')
-rw-r--r--src/ext/Util/ca/XmlConfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Util/ca/XmlConfig.cpp b/src/ext/Util/ca/XmlConfig.cpp
index a1ec9d6f..2014e15f 100644
--- a/src/ext/Util/ca/XmlConfig.cpp
+++ b/src/ext/Util/ca/XmlConfig.cpp
@@ -30,7 +30,7 @@ enum eXmlPreserveDate
30}; 30};
31 31
32LPCWSTR vcsXmlConfigQuery = 32LPCWSTR vcsXmlConfigQuery =
33 L"SELECT `Wix4XmlConfig`.`Wix4XmlConfig`, `Wix4XmlConfig`.`File`, `Wix4XmlConfig`.`ElementId`, `Wix4XmlConfig`.`ElementPath`, `Wix4XmlConfig`.`VerifyPath`, `Wix4XmlConfig`.`Name`, " 33 L"SELECT `Wix4XmlConfig`.`XmlConfig`, `Wix4XmlConfig`.`File`, `Wix4XmlConfig`.`ElementId`, `Wix4XmlConfig`.`ElementPath`, `Wix4XmlConfig`.`VerifyPath`, `Wix4XmlConfig`.`Name`, "
34 L"`Wix4XmlConfig`.`Value`, `Wix4XmlConfig`.`Flags`, `Wix4XmlConfig`.`Component_`, `Component`.`Attributes` " 34 L"`Wix4XmlConfig`.`Value`, `Wix4XmlConfig`.`Flags`, `Wix4XmlConfig`.`Component_`, `Component`.`Attributes` "
35 L"FROM `Wix4XmlConfig`,`Component` WHERE `Wix4XmlConfig`.`Component_`=`Component`.`Component` ORDER BY `File`, `Sequence`"; 35 L"FROM `Wix4XmlConfig`,`Component` WHERE `Wix4XmlConfig`.`Component_`=`Component`.`Component` ORDER BY `File`, `Sequence`";
36enum eXmlConfigQuery { xfqXmlConfig = 1, xfqFile, xfqElementId, xfqElementPath, xfqVerifyPath, xfqName, xfqValue, xfqXmlFlags, xfqComponent, xfqCompAttributes }; 36enum eXmlConfigQuery { xfqXmlConfig = 1, xfqFile, xfqElementId, xfqElementPath, xfqVerifyPath, xfqName, xfqValue, xfqXmlFlags, xfqComponent, xfqCompAttributes };