cdbrelsize.h 463 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*-------------------------------------------------------------------------
 *
 * cdbrelsize.h
 *
 * Get the max size of the relation across the segDBs
 *
 * Copyright (c) 2006-2008, Greenplum inc
 *
 *
 *-------------------------------------------------------------------------
 */
#ifndef CDBRELSIZE_H_
#define CDBRELSIZE_H_

H
Heikki Linnakangas 已提交
15
#include "utils/relcache.h"
16 17 18 19 20 21 22

extern void clear_relsize_cache(void);

extern int64 cdbRelSize(Relation rel);


#endif /*CDBRELSIZE_H_*/