Definition at line 167 of file Database.h. References Impala::Util::Channel::Buffer(), mDataChannel, and Impala::Util::Channel::SendRequest(). 00168 { 00169 if (mDataChannel) 00170 { 00171 char* buf = mDataChannel->Buffer(); 00172 sprintf(buf, "deletefile \"%s\"\0", path.c_str()); 00173 mDataChannel->SendRequest(strlen(buf)+1); 00174 } 00175 else 00176 { 00177 unlink(path.c_str()); 00178 } 00179 }
Here is the call graph for this function: ![]()
|