Commit d6c8e8d7 authored by Bruce Momjian's avatar Bruce Momjian

Consistently use NULL for invalid GUC unit strings

Patch by Euler Taveira
parent 032f3b7e
......@@ -7734,7 +7734,7 @@ GetConfigOptionByNum(int varnum, const char **values, bool *noshow)
values[2] = "min";
break;
default:
values[2] = "";
values[2] = NULL;
break;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment