Hyundong-Seo opened a new issue, #375: URL: https://github.com/apache/age/issues/375
When I try to load a csv file for edge, I should write a format like this for only AGE. **start_id,start_vertex_type,end_id,end_vertex_type,properties** But I think that it wastes about data and it isn't reasonable, because i should modify all files that were already written It seems that they have to exist for only AGE and it is not suitable about reusing a data file. I suggest a method that it changes just header not the other rows like this. And we write a label name with other delimiter like :(the colon). [present] ``` commentid,comment,personid,person 1236950581249,comment,10995116284808,person 1236950581250,comment,4139,person 2061584302085,comment,4139,person 2061584302086,comment,4139,person 2061584302087,comment,4139,person 2061584302088,comment,10995116284808,person 2061584302089,comment,32985348838375,person 2061584302090,comment,10995116284808,person 2061584302091,comment,6597069777240,person ... ``` [suggestion] ``` commentid:comment,personid:person 1236950581249,10995116284808 1236950581250,4139 2061584302085,4139 2061584302086,4139 2061584302087,4139 2061584302088,10995116284808 2061584302089,32985348838375 2061584302090,10995116284808 2061584302091,6597069777240 ... ``` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
