Commit eccf20b5 authored by Andrew McDonnell's avatar Andrew McDonnell

Fix typo (empty destid still getting through open table)

parent d4b02db9
......@@ -342,7 +342,7 @@ int ha_oqgraph::open(const char *name, int mode, uint test_if_locked)
fprint_error("Invalid OQGRAPH backing store (unspecified or empty origid attribute)");
return -1;
}
if (!options->destid || !*options->origid) {
if (!options->destid || !*options->destid) {
fprint_error("Invalid OQGRAPH backing store (unspecified or empty destid attribute)");
return -1;
}
......
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