Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
KnightMurloc committed Dec 25, 2023
1 parent b8bbfc8 commit 99cd01f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/diskquota.h
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,6 @@ extern HTAB *diskquota_hash_create(const char *tabname, long nelem, HASHC
extern HTAB *DiskquotaShmemInitHash(const char *name, long init_size, long max_size, HASHCTL *infoP, int hash_flags,
DiskquotaHashFunction hash_function);
extern void refresh_monitored_dbid_cache(void);
extern HASHACTION check_hash_fullness(HTAB *hashp, int max_size, const char *warning_message,
extern HASHACTION check_hash_fullness(HTAB *hashp, int max_size, const char *warning_message,
TimestampTz *last_overflow_report);
#endif
2 changes: 1 addition & 1 deletion src/gp_activetable.c
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ get_active_tables_oid(void)
{
HASHACTION action = check_hash_fullness(active_tables_map, diskquota_max_active_tables,
ACTIVE_TABLES_MAP_WARNING, &active_tables_map_last_overflow_report);
entry = hash_search(active_tables_map, active_table_file_entry, action, &found);
entry = hash_search(active_tables_map, active_table_file_entry, action, &found);
if (entry) *entry = *active_table_file_entry;
}
LWLockRelease(diskquota_locks.active_table_lock);
Expand Down

0 comments on commit 99cd01f

Please sign in to comment.