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/Util/ca/XmlFile.cpp | |
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/Util/ca/XmlFile.cpp')
-rw-r--r-- | src/ext/Util/ca/XmlFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Util/ca/XmlFile.cpp b/src/ext/Util/ca/XmlFile.cpp index 04a4ae98..10c86803 100644 --- a/src/ext/Util/ca/XmlFile.cpp +++ b/src/ext/Util/ca/XmlFile.cpp | |||
@@ -36,7 +36,7 @@ enum eXmlSelectionLanguage | |||
36 | }; | 36 | }; |
37 | 37 | ||
38 | LPCWSTR vcsXmlFileQuery = | 38 | LPCWSTR vcsXmlFileQuery = |
39 | L"SELECT `Wix4XmlFile`.`Wix4XmlFile`, `Wix4XmlFile`.`File`, `Wix4XmlFile`.`ElementPath`, `Wix4XmlFile`.`Name`, `Wix4XmlFile`.`Value`, " | 39 | L"SELECT `Wix4XmlFile`.`XmlFile`, `Wix4XmlFile`.`File`, `Wix4XmlFile`.`ElementPath`, `Wix4XmlFile`.`Name`, `Wix4XmlFile`.`Value`, " |
40 | L"`Wix4XmlFile`.`Flags`, `Wix4XmlFile`.`Component_`, `Component`.`Attributes` " | 40 | L"`Wix4XmlFile`.`Flags`, `Wix4XmlFile`.`Component_`, `Component`.`Attributes` " |
41 | L"FROM `Wix4XmlFile`,`Component` WHERE `Wix4XmlFile`.`Component_`=`Component`.`Component` ORDER BY `File`, `Sequence`"; | 41 | L"FROM `Wix4XmlFile`,`Component` WHERE `Wix4XmlFile`.`Component_`=`Component`.`Component` ORDER BY `File`, `Sequence`"; |
42 | enum eXmlFileQuery { xfqXmlFile = 1, xfqFile, xfqXPath, xfqName, xfqValue, xfqXmlFlags, xfqComponent, xfqCompAttributes }; | 42 | enum eXmlFileQuery { xfqXmlFile = 1, xfqFile, xfqXPath, xfqName, xfqValue, xfqXmlFlags, xfqComponent, xfqCompAttributes }; |