template<class NativeType>
Reimplemented from Impala::Util::IOBuffer. Definition at line 308 of file IOBufferChannel.h. References Write(). Referenced by NativeTypeWrite(). 00309 { 00310 String fs = NativeTypeFormat<NativeType>(0) + " "; 00311 char buf[1024]; 00312 sprintf(buf, fs.c_str(), val); 00313 Int64 i = 0; 00314 while (buf[i] != ' ') 00315 i++; 00316 Write(buf, i+1); 00317 }
Here is the call graph for this function:
|