Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor tests #1

Open
wants to merge 24 commits into
base: parallelize_tests
Choose a base branch
from
Open

Refactor tests #1

wants to merge 24 commits into from

Commits on Apr 19, 2022

  1. Merge pull request scylladb#67 from Ponewor/parallelize_tests

    Parallelize tests
    piodul authored Apr 19, 2022
    Configuration menu
    Copy the full SHA
    391374f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ee8e3d7 View commit details
    Browse the repository at this point in the history
  3. Change window_size type from chrono::Duration to time::Duration to hi…

    …ghlight its positivity
    Ponewor committed Apr 19, 2022
    Configuration menu
    Copy the full SHA
    8910dcf View commit details
    Browse the repository at this point in the history
  4. Change safety_interval type from chrono::Duration to time::Duration t…

    …o highlight its positivity
    Ponewor committed Apr 19, 2022
    Configuration menu
    Copy the full SHA
    093487c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1253cee View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    847e9b7 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    fbe7e12 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8c11125 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2022

  1. Merge pull request scylladb#62 from Ponewor/replicator_testing2

    Check if replication went correctly after each query
    piodul authored Apr 20, 2022
    Configuration menu
    Copy the full SHA
    fd40068 View commit details
    Browse the repository at this point in the history
  2. Merge pull request scylladb#66 from Ponewor/cleanup_datetimes

    Cleanup datetimes
    piodul authored Apr 20, 2022
    Configuration menu
    Copy the full SHA
    98ec445 View commit details
    Browse the repository at this point in the history
  3. Fix bug involving unwraping null values from CDC Row

    Replicator consumer wrongly assumed that the values for original
    table's clustering key coming from CDC Log table are not null.
    However for some queries like range deletes clustering key may
    be unspecified. An example of such a query is:
    
    SELECT FROM table WHERE pk = 0;
    
    This would result in two rows in CDC Log table both having null
    as a clustering key value.
    
    As a remedy, types for clustering key values and in consequence
    all the other columns' values have been changed from &CqlValue
    to Option<&CqlValue>.
    Ponewor committed Apr 20, 2022
    Configuration menu
    Copy the full SHA
    01028a1 View commit details
    Browse the repository at this point in the history
  4. Fix bug: cdc end_of_batch column counterintuively tends to be null wh…

    …en batch is not finished instead of false
    Ponewor committed Apr 20, 2022
    Configuration menu
    Copy the full SHA
    ba8926b View commit details
    Browse the repository at this point in the history
  5. Fix bug: during replication tests log rows with timestamp >equal< to …

    …the last read row should not be skipped
    Ponewor committed Apr 20, 2022
    Configuration menu
    Copy the full SHA
    564b30d View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2022

  1. Implement range row deletes

    Ponewor committed Apr 21, 2022
    Configuration menu
    Copy the full SHA
    3688758 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bca1462 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    64cb786 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b828911 View commit details
    Browse the repository at this point in the history
  5. Merge pull request scylladb#70 from Ponewor/fix_fetch_generations_con…

    …tinuously
    
    Fix fetch_generations_continuously
    piodul authored Apr 21, 2022
    Configuration menu
    Copy the full SHA
    8244646 View commit details
    Browse the repository at this point in the history
  6. Merge pull request scylladb#51 from Ponewor/batch

    Implement range row deletes
    piodul authored Apr 21, 2022
    Configuration menu
    Copy the full SHA
    a7c18fd View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e282fa0 View commit details
    Browse the repository at this point in the history
  8. Refactor: change local time source in unique_name generator from Syst…

    …emTime to chrono to make it more consistent with the rest of the library
    Ponewor committed Apr 21, 2022
    Configuration menu
    Copy the full SHA
    c6fe6c3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9768916 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    0c23c41 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    67538de View commit details
    Browse the repository at this point in the history