| 695 | } |
| 696 | |
| 697 | void |
| 698 | dbcontext::cmd_sql_internal(dbcallback_i& cb, const prep_stmt& pst, |
| 699 | const string_ref *fvals, size_t fvalslen) |
| 700 | { |
| 701 | if (fvalslen < 1) { |
| 702 | return cb.dbcb_resp_short(2, "syntax"); |
| 703 | } |
| 704 | return cb.dbcb_resp_short(2, "notimpl"); |
| 705 | } |
| 706 | |
| 707 | static size_t |
| 708 | prepare_keybuf(const cmd_exec_args& args, uchar *key_buf, TABLE *table, |
nothing calls this directly
no test coverage detected