Commit e01fda06 authored by John Esmet's avatar John Esmet Committed by Yoni Fogel

[t:5101] do_push_command is dead code


git-svn-id: file:///svn/toku/tokudb@44714 c7de825b-a66e-492c-adef-691d508d4ae1
parent 2595599e
...@@ -199,8 +199,6 @@ BOOL toku_ft_cursor_uninitialized(FT_CURSOR c) __attribute__ ((warn_unused_resu ...@@ -199,8 +199,6 @@ BOOL toku_ft_cursor_uninitialized(FT_CURSOR c) __attribute__ ((warn_unused_resu
void toku_ft_cursor_peek(FT_CURSOR cursor, const DBT **pkey, const DBT **pval); void toku_ft_cursor_peek(FT_CURSOR cursor, const DBT **pkey, const DBT **pval);
extern int toku_ft_do_push_cmd; // control whether push occurs eagerly.
DICTIONARY_ID toku_ft_get_dictionary_id(FT_HANDLE); DICTIONARY_ID toku_ft_get_dictionary_id(FT_HANDLE);
enum ft_flags { enum ft_flags {
......
...@@ -1243,17 +1243,6 @@ static void ft_blackbox_test (void) { ...@@ -1243,17 +1243,6 @@ static void ft_blackbox_test (void) {
test_ft_limits(); test_ft_limits();
test_ft_delete(); test_ft_delete();
// This test doesn't make much sense any more. We'll have to do revised tests for this functionality.
#if 0
int old_ft_do_push_cmd = toku_ft_do_push_cmd;
toku_ft_do_push_cmd = 0;
test_ft_delete();
toku_ft_do_push_cmd = old_ft_do_push_cmd;
#endif
} }
int int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment