Skip to content

Improve the matching of the return value of Connection::fetch in Connection::fetchone #34

@antaljanosbenjamin

Description

@antaljanosbenjamin

Connection::fetch will only return two combinations:

  • (Some(row), None): when a new row is obtained
  • (None, Some(has_more)) when there is no more records

In contrast what we are expecting is:

  • (Some(row), None)
  • (Some(row), Some(has_more))
  • (None, _)

These sohuld be syncronized.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions