if (rel->rd_isnailed)
nailed_indexes++;
- /* next, read the pg_index tuple */
+ /* read the pg_index tuple */
if (fread(&len, 1, sizeof(len), fp) != sizeof(len))
goto read_failed;
*/
InitIndexAmRoutine(rel);
- /* next, read the vector of opfamily OIDs */
+ /* read the vector of opfamily OIDs */
if (fread(&len, 1, sizeof(len), fp) != sizeof(len))
goto read_failed;
rel->rd_opfamily = opfamily;
- /* next, read the vector of opcintype OIDs */
+ /* read the vector of opcintype OIDs */
if (fread(&len, 1, sizeof(len), fp) != sizeof(len))
goto read_failed;
rel->rd_opcintype = opcintype;
- /* next, read the vector of support procedure OIDs */
+ /* read the vector of support procedure OIDs */
if (fread(&len, 1, sizeof(len), fp) != sizeof(len))
goto read_failed;
support = (RegProcedure *) MemoryContextAlloc(indexcxt, len);
rel->rd_support = support;
- /* next, read the vector of collation OIDs */
+ /* read the vector of collation OIDs */
if (fread(&len, 1, sizeof(len), fp) != sizeof(len))
goto read_failed;
rel->rd_indcollation = indcollation;
- /* finally, read the vector of indoption values */
+ /* read the vector of indoption values */
if (fread(&len, 1, sizeof(len), fp) != sizeof(len))
goto read_failed;
rel->rd_indoption = indoption;
- /* finally, read the vector of opcoptions values */
+ /* read the vector of opcoptions values */
rel->rd_opcoptions = (bytea **)
MemoryContextAllocZero(indexcxt, sizeof(*rel->rd_opcoptions) * relform->relnatts);