Open x-x-p opened 4 years ago
when sorted_files.size() is 0, sorted_files.size() - 1 is overflow, sorted_files[i + 1] operator[] fatal
https://github.com/facebook/rocksdb/blob/e04f3bce4fbe0453457047ea36e858888f0343e9/db/import_column_family_job.cc#L65-L70
@x-x-p Thanks, a good catch. You are right, size_t is unsigned. Will create a PR to fix it.
when sorted_files.size() is 0, sorted_files.size() - 1 is overflow, sorted_files[i + 1] operator[] fatal
https://github.com/facebook/rocksdb/blob/e04f3bce4fbe0453457047ea36e858888f0343e9/db/import_column_family_job.cc#L65-L70