We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent6f30d56 commit91e6f51Copy full SHA for 91e6f51
contrib/tablefunc/tablefunc.c
@@ -1366,10 +1366,10 @@ validateConnectbyTupleDesc(TupleDesc tupdesc, bool show_branch)
1366
elog(ERROR,"Query-specified return tuple not valid for Connectby: "
1367
"third column must be type %s",format_type_be(INT4OID));
1368
1369
-/* check that the type of theforth column is TEXT if applicable */
+/* check that the type of thefourth column is TEXT if applicable */
1370
if (show_branch&&tupdesc->attrs[3]->atttypid!=TEXTOID)
1371
1372
-"third column must be type %s",format_type_be(TEXTOID));
+"fourth column must be type %s",format_type_be(TEXTOID));
1373
1374
/* OK, the tupdesc is valid for our purposes */
1375
}