Skip to content

Commit d46fbef

Browse files
committed
Add mention that tid perhaps someday should be output as a record.
1 parent 909ca14 commit d46fbef

File tree

1 file changed

+2
-1
lines changed
  • src/backend/utils/adt

1 file changed

+2
-1
lines changed

src/backend/utils/adt/tid.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/utils/adt/tid.c,v 1.50 2006/02/26 18:36:21 neilc Exp $
11+
* $PostgreSQL: pgsql/src/backend/utils/adt/tid.c,v 1.51 2006/02/27 01:41:16 momjian Exp $
1212
*
1313
* NOTES
1414
* input routine largely stolen from boxin().
@@ -111,6 +111,7 @@ tidout(PG_FUNCTION_ARGS)
111111
blockNumber = BlockIdGetBlockNumber(blockId);
112112
offsetNumber = itemPtr->ip_posid;
113113

114+
/* Perhaps someday we should output this as a record. */
114115
snprintf(buf, sizeof(buf), "(%u,%u)", blockNumber, offsetNumber);
115116

116117
PG_RETURN_CSTRING(pstrdup(buf));

0 commit comments

Comments
 (0)