Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 648f007

Browse files
committed
I have found a minor problem with current configure.in.
[AC_MSG_RESULT(yes) AC_DEFINE(HAVE_LONG_INT_64)], this line produces something like: echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF and would append garbage "yes cat" to confdefs.h. Of course the result confdefs.h is not syntactically correct therefore following tests using confdefs.h would all fail. To avoid the problem, we could switch the order of AC_MSG_RESULT and AC_DEFINE (see attached patch). This happend on my LinuxPPC box. Tatsuo Ishii t-ishii@sra.co.jp
1 parent 0a15090 commit 648f007

File tree

3 files changed

+501
-498
lines changed

3 files changed

+501
-498
lines changed

src/backend/optimizer/plan/subselect.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ _replace_var(Var *var)
7676
lnext(vpe) = NULL;
7777
}
7878

79-
for (i = 1;; i++)
79+
for (i = ObjectIdAttributeNumber;; i++)
8080
{
8181
if (i == var->varattno)
8282
break;

0 commit comments

Comments
 (0)