-
Notifications
You must be signed in to change notification settings - Fork 17
Pull 99% of walproposer code into extension. #188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
2f9a020
88a4089
25cca06
aaf7df4
6e04347
73092bb
7996665
8cb526b
5de7cfd
aba4c5e
691f6a6
a973385
172ea61
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,8 @@ SUBDIRS = \ | |
isn \ | ||
lo \ | ||
ltree \ | ||
neon \ | ||
neon_test_utils \ | ||
oid2name \ | ||
old_snapshot \ | ||
pageinspect \ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/*------------------------------------------------------------------------- | ||
* | ||
* neon.h | ||
* Functions used in the initialization of this extension. | ||
* | ||
* IDENTIFICATION | ||
* contrib/neon/neon.h | ||
* | ||
*------------------------------------------------------------------------- | ||
*/ | ||
|
||
#ifndef NEON_H | ||
#define NEON_H | ||
|
||
extern void pg_init_libpagestore(void); | ||
extern void pg_init_libpqwalproposer(void); | ||
extern void pg_init_walproposer(void); | ||
|
||
#endif /* NEON_H */ |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1336,7 +1336,7 @@ zenith_nblocks(SMgrRelation reln, ForkNumber forknum) | |
/* | ||
* zenith_db_size() -- Get the size of the database in bytes. | ||
*/ | ||
int64 | ||
const int64 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does it mean for a function to be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know - it was required for signature checks and was pre-existing in the signature for the db_size hook - I didn't want to change this annotation without knowing why it was annotated. |
||
zenith_dbsize(Oid dbNode) | ||
{ | ||
ZenithResponse *resp; | ||
|
Uh oh!
There was an error while loading. Please reload this page.