-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(Core/DBLayer): replace `char const*` to `std::string_view` * CString * 1 * chore(Core/Misc): code cleanup * cl * db fix * fmt style sql * to fmt * py * del old * 1 * 2 * 3 * 1 * 1
- Loading branch information
1 parent
d6ead1d
commit de13bf4
Showing
140 changed files
with
4,966 additions
and
4,793 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
data/sql/updates/pending_db_world/rev_1643662892603722900.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1643662892603722900'); | ||
|
||
UPDATE `creature_template` SET `RegenHealth` = 0 WHERE `RegenHealth` >= 2; | ||
UPDATE `creature_onkill_reputation` SET `IsTeamAward1` = 0 WHERE `IsTeamAward1` >= 2; | ||
UPDATE `creature_onkill_reputation` SET `IsTeamAward2` = 0 WHERE `IsTeamAward2` >= 2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
## How to upgrade | ||
- `PrepareStatment` | ||
|
||
```diff | ||
- setNull(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setBool(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setUInt8(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setInt8(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setUInt16(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setInt16(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setUInt32(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setUInt64(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setInt64(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setFloat(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setDouble(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setString(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setStringView(...) | ||
+ SetData(...) | ||
``` | ||
```diff | ||
- setBinary(...) | ||
+ SetData(...) | ||
``` | ||
|
||
- `Fields` | ||
|
||
```diff | ||
- GetBool() | ||
+ Get<bool>() | ||
``` | ||
```diff | ||
- GetUInt8() | ||
+ Get<uint8>() | ||
``` | ||
```diff | ||
- GetInt8() | ||
+ Get<int8>() | ||
``` | ||
```diff | ||
- GetUInt16() | ||
+ Get<uint16>() | ||
``` | ||
```diff | ||
- GetInt16() | ||
+ Get<int16>() | ||
``` | ||
```diff | ||
- GetUInt32() | ||
+ Get<uint32>() | ||
``` | ||
```diff | ||
- GetInt32() | ||
+ Get<int32>() | ||
``` | ||
```diff | ||
- GetUInt64() | ||
+ Get<uint64>() | ||
``` | ||
```diff | ||
- GetInt64() | ||
+ Get<int64>() | ||
``` | ||
```diff | ||
- GetFloat() | ||
+ Get<float>() | ||
``` | ||
```diff | ||
- GetDouble() | ||
+ Get<double>() | ||
``` | ||
```diff | ||
- GetString() | ||
+ Get<std::string>() | ||
``` | ||
```diff | ||
- GetStringView() | ||
+ Get<std::string_view>() | ||
``` | ||
```diff | ||
- GetBinary() | ||
+ Get<Binary>() | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.