Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/backend/access/aocs/aocssegfiles.c
Original file line number Diff line number Diff line change
Expand Up @@ -1512,7 +1512,7 @@ gp_update_aocol_master_stats_internal(Relation parentrel, Snapshot appendOnlyMet
{
StringInfoData sqlstmt;
Relation aosegrel;
bool connected = false;
volatile bool connected = false;
int proc; /* 32 bit, only holds number of segments */
int ret;
int64 total_count = 0;
Expand Down Expand Up @@ -1698,7 +1698,7 @@ aocol_compression_ratio_internal(Relation parentrel)
{
StringInfoData sqlstmt;
Relation aosegrel;
bool connected = false;
volatile bool connected = false;
int proc; /* 32 bit, only holds number of segments */
int ret;
int64 eof = 0;
Expand Down
6 changes: 3 additions & 3 deletions src/backend/access/appendonly/aosegfiles.c
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,7 @@ gp_update_aorow_master_stats_internal(Relation parentrel, Snapshot appendOnlyMet
{
StringInfoData sqlstmt;
Relation aosegrel;
bool connected = false;
volatile bool connected = false;
int proc; /* 32 bit, only holds number of segments */
int ret;
int64 total_count = 0;
Expand Down Expand Up @@ -1584,7 +1584,7 @@ get_ao_distribution(PG_FUNCTION_ARGS)
*/
if (SRF_IS_FIRSTCALL())
{
bool connected = false;
volatile bool connected = false;
Oid segrelid;

funcctx = SRF_FIRSTCALL_INIT();
Expand Down Expand Up @@ -1781,7 +1781,7 @@ aorow_compression_ratio_internal(Relation parentrel)
{
StringInfoData sqlstmt;
Relation aosegrel;
bool connected = false;
volatile bool connected = false;
int proc; /* 32 bit, only holds number of segments */
int ret;
float8 compress_ratio = -1; /* the default, meaning "not
Expand Down