vdiravka commented on a change in pull request #1723: DRILL-7063: Seperate 
metadata cache file into summary, file metadata
URL: https://github.com/apache/drill/pull/1723#discussion_r270769440
 
 

 ##########
 File path: exec/java-exec/src/test/java/org/apache/drill/PlanTestBase.java
 ##########
 @@ -465,4 +469,24 @@ private static String getPrefixJoinOrderFromPlan(String 
plan, String joinKeyWord
 
     return builder.toString();
   }
+
+  /**
+   * Create a temp metadata directory to query the metadata summary cache file
+   * @param table table name or table path
+   */
+  public static void createMetadataDir(String table) throws IOException {
+    final String tmpDir;
+    try {
+      tmpDir = dirTestWatcher.getRootDir().getCanonicalPath();
+    } catch (IOException e) {
+      throw new RuntimeException(e);
+    }
+    File metadataDir = 
dirTestWatcher.makeRootSubDir(Paths.get(tmpDir+"/"+table+"/metadataDir"));
+    File metaFile, newFile;
+    metaFile = table.startsWith(tmpDir) ? FileUtils.getFile(table, 
Metadata.METADATA_SUMMARY_FILENAME)
+            : FileUtils.getFile(tmpDir, table, 
Metadata.METADATA_SUMMARY_FILENAME);
+    newFile = new File(tmpDir+"/"+table+"/summary_meta.json");
 
 Review comment:
   ```suggestion
       newFile = new File(tmpDir + "/" + table + "/summary_meta.json");
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to