template<class NativeType>
Reimplemented from Impala::Util::IOBuffer. Definition at line 334 of file IOBufferChannel.h. References Write(). Referenced by NativeTypeWrite(). 00335 { 00336 String fs = NativeTypeFormat<NativeType>(0) + " "; 00337 char buf[1024]; 00338 sprintf(buf, fs.c_str(), val); 00339 Int64 i = 0; 00340 while (buf[i] != ' ') 00341 i++; 00342 Write(buf, i+1); 00343 }
Here is the call graph for this function: ![]()
|