mirror of https://github.com/citusdata/citus.git
Some clean up
parent
2c2ea7a5c7
commit
24d1a01521
|
@ -23,7 +23,6 @@
|
||||||
#include "citus_version.h"
|
#include "citus_version.h"
|
||||||
#include "columnar/columnar.h"
|
#include "columnar/columnar.h"
|
||||||
|
|
||||||
|
|
||||||
/* Default values for option parameters */
|
/* Default values for option parameters */
|
||||||
#define DEFAULT_STRIPE_ROW_COUNT 150000
|
#define DEFAULT_STRIPE_ROW_COUNT 150000
|
||||||
#define DEFAULT_CHUNK_ROW_COUNT 10000
|
#define DEFAULT_CHUNK_ROW_COUNT 10000
|
||||||
|
|
|
@ -1024,14 +1024,14 @@ static void
|
||||||
columnar_vacuum_rel(Relation rel, VacuumParams *params,
|
columnar_vacuum_rel(Relation rel, VacuumParams *params,
|
||||||
BufferAccessStrategy bstrategy)
|
BufferAccessStrategy bstrategy)
|
||||||
{
|
{
|
||||||
if (!CheckCitusVersion(WARNING))
|
if (!CheckCitusVersion(WARNING))
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* Skip if the extension catalogs are not up-to-date, but avoid
|
* Skip if the extension catalogs are not up-to-date, but avoid
|
||||||
* erroring during auto-vacuum.
|
* erroring during auto-vacuum.
|
||||||
*/
|
*/
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If metapage version of relation is older, then we hint users to VACUUM
|
* If metapage version of relation is older, then we hint users to VACUUM
|
||||||
|
|
|
@ -19,7 +19,6 @@ DATA_built = $(generated_sql_files)
|
||||||
|
|
||||||
# directories with source files
|
# directories with source files
|
||||||
SUBDIRS = . commands connection ddl deparser executor metadata operations planner progress relay safeclib test transaction utils worker
|
SUBDIRS = . commands connection ddl deparser executor metadata operations planner progress relay safeclib test transaction utils worker
|
||||||
|
|
||||||
# enterprise modules
|
# enterprise modules
|
||||||
SUBDIRS +=
|
SUBDIRS +=
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue