\brief create an instance from values
| 265 | static constexpr std::string_view kName = "fetch"; |
| 266 | /// \brief create an instance from values |
| 267 | FetchNodeOptions(int64_t offset, int64_t count) : offset(offset), count(count) {} |
| 268 | /// \brief the number of rows to skip |
| 269 | int64_t offset; |
| 270 | /// \brief the number of rows to keep (not counting skipped rows) |