Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite06099c

Browse files
committed
heap_getattr fix for aix.
1 parent8fd0898 commite06099c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎src/include/access/heapam.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: heapam.h,v 1.9 1997/08/27 09:03:47 vadim Exp $
9+
* $Id: heapam.h,v 1.10 1997/08/29 00:44:55 momjian Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -96,11 +96,11 @@ typedef HeapAccessStatisticsData *HeapAccessStatistics;
9696
#defineheap_getattr(tup,b,attnum,tupleDesc,isnull) \
9797
(AssertMacro((tup) != NULL) ? \
9898
((attnum) > (int) (tup)->t_natts) ? \
99-
(((isnull) ? (*(isnull) = true) : NULL), (char *)NULL) : \
99+
(((isnull) ? (*(isnull) = true) :(char *)NULL), (char *)NULL) : \
100100
((attnum) > 0) ? \
101101
fastgetattr((tup), (attnum), (tupleDesc), (isnull)) : \
102-
(((isnull) ? (*(isnull) = false) : NULL), heap_getsysattr((tup), (b), (attnum))) : \
103-
(char *)NULL)
102+
(((isnull) ? (*(isnull) = false) :(char *)NULL), heap_getsysattr((tup), (b), (attnum))) : \
103+
(char *)NULL)
104104

105105
externHeapAccessStatisticsheap_access_stats;/* in stats.c */
106106

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp