Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Copy xid string to reduce memory usage in bulk loader (#4287)
In bulk loader, we read raw data from input file line by line. We use substrings of line in various places in the bulk loader. All the substring references are gone soon enough except the reference to xid. Reference to xid is stored in the AssignUid map and hence, the whole line (string) is alive througout the process. We make a copy of xid now before storing it in the map.
- Loading branch information