-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit addresses several memory leaks primarily in the code related to obtaining the relation key and the storage manager (smgr). Additionally, fixes were made to the internal key cache maintained by each backend, as the keys were not properly added to the cache list.
- Loading branch information
1 parent
8996c03
commit 7921343
Showing
6 changed files
with
113 additions
and
85 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
|
||
#pragma once | ||
/*------------------------------------------------------------------------- | ||
* | ||
* pg_tde_smgr.h | ||
* src/include/smgr/pg_tde_smgr.h | ||
* | ||
*------------------------------------------------------------------------- | ||
*/ | ||
|
||
extern void RegisterStorageMgr(); | ||
#ifndef PG_TDE_SMGR_H | ||
#define PG_TDE_SMGR_H | ||
|
||
extern void RegisterStorageMgr(void); | ||
|
||
#endif /* PG_TDE_SMGR_H */ |
Oops, something went wrong.