Github user arina-ielchiieva commented on a diff in the pull request:

    https://github.com/apache/drill/pull/755#discussion_r171084819
  
    --- Diff: 
exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/store/LocalPersistentStore.java
 ---
    @@ -112,23 +127,65 @@ public static DrillFileSystem 
getFileSystem(DrillConfig config, Path root) throw
     
       @Override
       public Iterator<Map.Entry<String, V>> getRange(int skip, int take) {
    +    //Marking currently seen modification time
    +    long currBasePathModified = 0L;
    +    try {
    +      currBasePathModified = 
fs.getFileStatus(basePath).getModificationTime();
    +    } catch (IOException ioexcp) {
    +      ioexcp.printStackTrace();
    --- End diff --
    
    Please do not use `printStackTrace()`


---

Reply via email to