//////////////////// ScanDescImpl ///////////////////////
| 408 | |
| 409 | ///////////////////////// ScanDescImpl /////////////////////// |
| 410 | ScanDescImpl::ScanDescImpl(const string& rowkey) |
| 411 | : start_timestamp_(0), |
| 412 | timer_range_(NULL), |
| 413 | buf_size_(FLAGS_tera_sdk_scan_buffer_size), |
| 414 | number_limit_(FLAGS_tera_sdk_scan_number_limit), |
| 415 | max_version_(1), |
| 416 | max_qualifiers_(std::numeric_limits<uint64_t>::max()), |
| 417 | scan_slot_timeout_(FLAGS_tera_sdk_scan_timeout), |
| 418 | snapshot_(0), |
| 419 | filter_desc_(NULL) { |
| 420 | SetStart(rowkey); |
| 421 | } |
| 422 | |
| 423 | ScanDescImpl::ScanDescImpl(const ScanDescImpl& impl) |
| 424 | : start_key_(impl.start_key_), |
nothing calls this directly
no test coverage detected