Fix two bugs.
#1010789 : pg_reorg 1.1.0 and "unexpected toast relations" #1010790 : reorg.get_index_keys() does not handle composite indexes
This commit is contained in:
@ -273,6 +273,7 @@ parse_int64(const char *value, int64 *result)
|
||||
#elif defined(HAVE_LONG_INT_64)
|
||||
val = strtol(value, &endptr, 0);
|
||||
#elif defined(HAVE_LONG_LONG_INT_64)
|
||||
val = strtoll(value, &endptr, 0);
|
||||
#else
|
||||
val = strtol(value, &endptr, 0);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user