-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refer to issue #108
- Loading branch information
Maxim Orlov
committed
May 27, 2022
1 parent
1c6d616
commit 7197b83
Showing
8 changed files
with
38 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/*------------------------------------------------------------------------- | ||
* | ||
* disable_core_macro.h | ||
* Support including tuplesort.c from postgresql core code. | ||
* | ||
* Copyright (c) 2022, Postgres Professional | ||
* | ||
*------------------------------------------------------------------------- | ||
*/ | ||
|
||
#ifndef __DISABLE_CORE_MACRO_H__ | ||
#define __DISABLE_CORE_MACRO_H__ | ||
|
||
#undef TRACE_SORT | ||
#undef DEBUG_BOUNDED_SORT | ||
#undef TRACE_POSTGRESQL_SORT_START | ||
#undef TRACE_POSTGRESQL_SORT_DONE | ||
|
||
#define TRACE_POSTGRESQL_SORT_START(arg1, arg2, arg3, arg4, arg5, arg6) \ | ||
do {} while(0) | ||
#define TRACE_POSTGRESQL_SORT_DONE(arg1, arg2) \ | ||
do {} while(0) | ||
|
||
#endif /* __DISABLE_CORE_MACRO_H__ */ |
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
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