template<class NativeType>
Reimplemented in Impala::Util::IOBufferChannel, and Impala::Util::IOBufferFile. Definition at line 717 of file IOBuffer.h. References Write(). Referenced by NativeTypeWrite(). 00718 { 00719 String fs = NativeTypeFormat<NativeType>(0) + " "; 00720 char buf[1024]; 00721 sprintf(buf, fs.c_str(), val); 00722 Int64 i = 0; 00723 while (buf[i] != ' ') 00724 i++; 00725 Write(buf, i+1); 00726 }
Here is the call graph for this function: ![]()
|