* FigureIndexColname - * choose the name for an expression column in an index * * This is actually just like FigureColname, except we return NULL if * we can't pick a good name. */
| 1713 | * we can't pick a good name. |
| 1714 | */ |
| 1715 | char * |
| 1716 | FigureIndexColname(Node *node) |
| 1717 | { |
| 1718 | char *name = NULL; |
| 1719 | |
| 1720 | (void) FigureColnameInternal(node, &name); |
| 1721 | return name; |
| 1722 | } |
| 1723 | |
| 1724 | /* |
| 1725 | * FigureColnameInternal - |
no test coverage detected