This feature allows to partially recover data from a given segment file in format suitable for using in COPY FROM statement. List of supported data types is currently not full and TOAST is not yet supported, but it's better than nothing. Hopefully data recovery will be improved in the future. Implemented by Aleksander Alekseev, reviewed by Dmitry Ivanov, tested by Dmitry Ivanov and Grigoriy Smolkin.
11 lines
186 B
C
11 lines
186 B
C
#ifndef _PG_FILEDUMP_DECODE_H_
|
|
#define _PG_FILEDUMP_DECODE_H_
|
|
|
|
int
|
|
ParseAttributeTypesString(const char* str);
|
|
|
|
void
|
|
FormatDecode(const char* tupleData, unsigned int tupleSize);
|
|
|
|
#endif
|