Patch
- PostgreSQL: COMMENT ON FUNCTION/PROCEDURE/AGGREGATE accepts argmode/argname/VARIADIC (#28) —
parse_commentnow usesparse_function_argfor the argument list, soIN/OUT/INOUT/VARIADICmodes and named args before the type parse correctly. 0.61.0 used bareparse_data_typeand silently parse-failed any of these forms despite them being valid PG. Modes/names are intentionally discarded sinceStatement::Comment.argumentscarries plainVec<DataType>for identity matching.
This unblocks downstream COMMENT-ON regex-to-AST migrations.