Go to the source code of this file.
Functions | |
FENNEL_BEGIN_CPPFILE ("$Id: //open/dev/fennel/lucidera/colstore/LcsClusterNodeWriter.cpp#20 $") | |
void | myCopy (void *pDest, void *pSrc, uint sz) |
FENNEL_END_CPPFILE ("$Id: //open/dev/fennel/lucidera/colstore/LcsClusterNodeWriter.cpp#20 $") |
FENNEL_BEGIN_CPPFILE | ( | "$Id: //open/dev/fennel/lucidera/colstore/LcsClusterNodeWriter.cpp#20 $" | ) |
FENNEL_END_CPPFILE | ( | "$Id: //open/dev/fennel/lucidera/colstore/LcsClusterNodeWriter.cpp#20 $" | ) |
void myCopy | ( | void * | pDest, | |
void * | pSrc, | |||
uint | sz | |||
) |
Definition at line 952 of file LcsClusterNodeWriter.cpp.
Referenced by LcsClusterNodeWriter::moveFromIndexToTemp(), and LcsClusterNodeWriter::moveFromTempToIndex().
00953 { 00954 if (pDest == pSrc) { 00955 return; 00956 } else { 00957 memcpy(pDest, pSrc, sz); 00958 } 00959 }