7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.26 1998/02/21 16:58:26 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.27 1998/02/21 18:17:58 momjian Exp $
11
11
*
12
12
* NOTES
13
13
* Most of the read functions for plan nodes are tested. (In fact, they
@@ -1370,10 +1370,6 @@ _readRangeTblEntry()
1370
1370
StrNCpy (local_node -> relname , token , length + 1 );
1371
1371
}
1372
1372
1373
- token = lsptok (NULL , & length ); /* eat :inh */
1374
- token = lsptok (NULL , & length ); /* get :inh */
1375
- local_node -> inh = (token [0 ] == 't' ) ? true : false;
1376
-
1377
1373
token = lsptok (NULL , & length ); /* eat :refname */
1378
1374
token = lsptok (NULL , & length ); /* get :refname */
1379
1375
if (length == 0 )
@@ -1388,6 +1384,18 @@ _readRangeTblEntry()
1388
1384
token = lsptok (NULL , & length ); /* get :relid */
1389
1385
local_node -> relid = strtoul (token ,NULL ,10 );
1390
1386
1387
+ token = lsptok (NULL , & length ); /* eat :inh */
1388
+ token = lsptok (NULL , & length ); /* get :inh */
1389
+ local_node -> inh = (token [0 ] == 't' ) ? true : false;
1390
+
1391
+ token = lsptok (NULL , & length ); /* eat :inFromCl */
1392
+ token = lsptok (NULL , & length ); /* get :inFromCl */
1393
+ local_node -> inFromCl = (token [0 ] == 't' ) ? true : false;
1394
+
1395
+ token = lsptok (NULL , & length ); /* eat :skipAcl */
1396
+ token = lsptok (NULL , & length ); /* get :skipAcl */
1397
+ local_node -> skipAcl = (token [0 ] == 't' ) ? true : false;
1398
+
1391
1399
return (local_node );
1392
1400
}
1393
1401
0 commit comments