Github user paul-guo- commented on a diff in the pull request:

    https://github.com/apache/incubator-hawq/pull/1243#discussion_r117418664
  
    --- Diff: src/backend/executor/nodeMaterial.c ---
    @@ -759,3 +764,30 @@ ExecEagerFreeMaterial(MaterialState *node)
        }
     }
     
    +
    +/*
    + * mkTempFileForWriter
    + * 
    + * Create a unique tmp file for writer. Then use flock's unblock way to 
lock the tmp file.
    + * We can make sure the tmp file will be locked forerver until the writer 
process has quit.
    + */
    +void mkTempFileForWriter(int size, int share_id, char * name)
    +{
    +   char *tmp_file;
    +   int lock;
    +
    +   tmp_file = (char *)palloc(sizeof(char) * MAXPGPATH);
    +   mk_tmp_file_name(tmp_file, size, share_id, name);
    +   elog(DEBUG3, "tmp file for writer is %s", tmp_file);
    +   fd_tmp_writer = open(tmp_file, O_CREAT, S_IRWXU);
    --- End diff --
    
    I do not think we need to provide +wx permission.
    
    I think if the file exists we should quit, right? If yes, we need to add 
O_EXCL


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to