Skip to content

Commit 3d5a4c2

Browse files
committed
commit
1 parent 3ad85a7 commit 3d5a4c2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

bdb/file.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@
112112
#include <phys_rep_lsn.h>
113113

114114
#include <log_trigger.h>
115+
#include <sqllogfill.h>
115116

116117
extern int gbl_bdblock_debug;
117118
extern int gbl_keycompr;
@@ -2424,6 +2425,7 @@ int bdb_is_standalone(void *dbenv, void *in_bdb_state)
24242425
}
24252426

24262427
extern int gbl_commit_delay_trace;
2428+
extern int gbl_sql_logfill;
24272429
int gbl_skip_catchup_logic = 0;
24282430
int gbl_debug_downgrade_cluster_at_open = 0;
24292431

@@ -3092,6 +3094,10 @@ if (!is_real_netinfo(bdb_state->repinfo->netinfo))
30923094

30933095
master_host = bdb_state->repinfo->master_host;
30943096

3097+
if (gbl_sql_logfill) {
3098+
create_sql_logfill_threads(bdb_state);
3099+
}
3100+
30953101
if ((master_host == db_eid_invalid) || (master_host == bdb_master_dupe))
30963102
goto waitformaster;
30973103

db/sqllogfill.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#ifndef SQLLOGFILL_H
1818
#define SQLLOGFILL_H
1919

20-
#include <bdb/bdb_int.h>
20+
#include <bdb_int.h>
2121

2222
void sql_logfill_signal(bdb_state_type *bdb_state);
2323

0 commit comments

Comments
 (0)