Commit 7a9eca11 authored by Olivier Bertrand's avatar Olivier Bertrand

Fix compile error (imcomplete switch) in ha_connect.cc

parent 3ad05417
...@@ -1045,6 +1045,8 @@ TABTYPE ha_connect::GetRealType(PTOS pos) ...@@ -1045,6 +1045,8 @@ TABTYPE ha_connect::GetRealType(PTOS pos)
case TAB_REST: case TAB_REST:
type = TAB_NIY; type = TAB_NIY;
break; break;
default:
break;
} // endswitch type } // endswitch type
#endif // REST_SUPPORT #endif // REST_SUPPORT
...@@ -5634,6 +5636,8 @@ static int connect_assisted_discovery(handlerton *, THD* thd, ...@@ -5634,6 +5636,8 @@ static int connect_assisted_discovery(handlerton *, THD* thd,
case TAB_CSV: case TAB_CSV:
ttp = TAB_REST; ttp = TAB_REST;
break; break;
default:
break;
} // endswitch type } // endswitch type
#endif // REST_SUPPORT #endif // REST_SUPPORT
} // endif ttp } // endif ttp
......
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