From 3feaf1648528ff39e23748ac9004a77595460c9d Mon Sep 17 00:00:00 2001 From: Joseph Fernandes Date: Mon, 30 Mar 2015 17:23:29 +0530 Subject: Gfdb Query Fix and Volume option fix 1) Query fix in find_changed_with_freq() 2) Volume option typo fix for write_freq_threshold and read_freq_threshold Change-Id: I38e154818178aab412b2d7b2914cd29acef66ffb BUG: 1207343 Signed-off-by: Joseph Fernandes Reviewed-on: http://review.gluster.org/10050 Reviewed-by: Dan Lambright Tested-by: Gluster Build System Reviewed-by: Niels de Vos --- libglusterfs/src/gfdb/gfdb_sqlite3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libglusterfs/src/gfdb') diff --git a/libglusterfs/src/gfdb/gfdb_sqlite3.c b/libglusterfs/src/gfdb/gfdb_sqlite3.c index 818691d7cea..fa654840803 100644 --- a/libglusterfs/src/gfdb/gfdb_sqlite3.c +++ b/libglusterfs/src/gfdb/gfdb_sqlite3.c @@ -847,12 +847,12 @@ gf_sqlite3_find_recently_changed_files_freq (void *db_conn, /*First condition: For Writes*/ "( ((" GF_COL_TB_WSEC " * " TOSTRING(GFDB_MICROSEC) " + " GF_COL_TB_WMSEC ") >= ? )" - " AND "" (" GF_COL_TB_WFC " > = ? ) )" + " AND "" (" GF_COL_TB_WFC " >= ? ) )" " OR " /*Second condition: For Reads */ "( ((" GF_COL_TB_RWSEC " * " TOSTRING(GFDB_MICROSEC) " + " GF_COL_TB_RWMSEC ") <= ?)" - " AND "" (" GF_COL_TB_RFC " > = ? ) )"; + " AND "" (" GF_COL_TB_RFC " >= ? ) )"; from_time_usec = gfdb_time_2_usec(from_time); -- cgit