* Check if a reloptions array is nonempty. */
| 21404 | * Check if a reloptions array is nonempty. |
| 21405 | */ |
| 21406 | static bool |
| 21407 | nonemptyReloptions(const char *reloptions) |
| 21408 | { |
| 21409 | /* Don't want to print it if it's just "{}" */ |
| 21410 | return (reloptions != NULL && strlen(reloptions) > 2); |
| 21411 | } |
| 21412 | |
| 21413 | /* |
| 21414 | * Format a reloptions array and append it to the given buffer. |
no outgoing calls
no test coverage detected