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/RestartManager.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/RestartManager.cpp')
-rw-r--r-- | src/ext/Util/ca/RestartManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Util/ca/RestartManager.cpp b/src/ext/Util/ca/RestartManager.cpp index c31819c1..96390152 100644 --- a/src/ext/Util/ca/RestartManager.cpp +++ b/src/ext/Util/ca/RestartManager.cpp | |||
@@ -18,7 +18,7 @@ enum eRmuResourceType | |||
18 | }; | 18 | }; |
19 | 19 | ||
20 | LPCWSTR vcsRestartResourceQuery = | 20 | LPCWSTR vcsRestartResourceQuery = |
21 | L"SELECT `Wix4RestartResource`.`Wix4RestartResource`, `Wix4RestartResource`.`Component_`, `Wix4RestartResource`.`Resource`, `Wix4RestartResource`.`Attributes` " | 21 | L"SELECT `Wix4RestartResource`.`RestartResource`, `Wix4RestartResource`.`Component_`, `Wix4RestartResource`.`Resource`, `Wix4RestartResource`.`Attributes` " |
22 | L"FROM `Wix4RestartResource`"; | 22 | L"FROM `Wix4RestartResource`"; |
23 | enum eRestartResourceQuery { rrqRestartResource = 1, rrqComponent, rrqResource, rrqAttributes }; | 23 | enum eRestartResourceQuery { rrqRestartResource = 1, rrqComponent, rrqResource, rrqAttributes }; |
24 | 24 | ||