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

Count rows queries #1442

Open
wants to merge 19 commits into
base: master
Choose a base branch
from

Commits on May 6, 2024

  1. where-clause

    BarShauli555 committed May 6, 2024
    Configuration menu
    Copy the full SHA
    bb8e292 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. where-clause

    BarShauli555 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    2f4f555 View commit details
    Browse the repository at this point in the history
  2. adding code to main

    BarShauli555 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    1962c8a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    825341d View commit details
    Browse the repository at this point in the history
  4. adding code to build.go

    BarShauli555 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    104347f View commit details
    Browse the repository at this point in the history
  5. removing sql_bin_log=0

    BarShauli555 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    1378868 View commit details
    Browse the repository at this point in the history
  6. removing sql_bin_log=0

    BarShauli555 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    49d1f89 View commit details
    Browse the repository at this point in the history
  7. remove code_owners file

    BarShauli555 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    63ca4cd View commit details
    Browse the repository at this point in the history
  8. remove PR issued

    BarShauli555 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    2bb7cb9 View commit details
    Browse the repository at this point in the history
  9. remove comments

    BarShauli555 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    c99aaa4 View commit details
    Browse the repository at this point in the history
  10. fix tests

    BarShauli555 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    d66cc55 View commit details
    Browse the repository at this point in the history
  11. test

    BarShauli555 committed May 7, 2024
    Configuration menu
    Copy the full SHA
    8de94e3 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2024

  1. adding debug and status

    BarShauli555 committed May 12, 2024
    Configuration menu
    Copy the full SHA
    045a657 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dbdb89f View commit details
    Browse the repository at this point in the history
  3. add quer debug

    BarShauli555 committed May 12, 2024
    Configuration menu
    Copy the full SHA
    a611d80 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. remove debug line

    BarShauli555 committed May 13, 2024
    Configuration menu
    Copy the full SHA
    6de0e3e View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Merge pull request #1 from wix-playground/where-clause

    online schema changes with deletion.
    architecture as detailed explained here: https://kb.wixpress.com/x/8pocBQ
    
    Where clause condition will always receive the default 1=1.
    in case we would like to delete table data we will use the where clause as in a "select" meaning we will put the data we want to save in the where clause.
    to include values on the where clause - use the condition as it is. for exclude values please put "not" before.
    
    Please note : 
    Where clause condition will be enforced only from the source table and not from the binlog. meaning if I put a where clause of id < 100, and id # 2 was updated \ inserted, it will be in the new table because this DML will be taken from the binlog. this is a feature since this is newly update\insert otherwise it should be inserted into the binlogs as a deleted row.
    If you are using one filter operation with in  , please don't put more than 5 values. otherwise please use the sub-select option.
    For hash \ string it is better to use the sub-select option, avoiding string manipulation issues in the middle (Jenkins, ansible, Casper). 
    Where clause can not be edited in the middle of ghost run.
    BarShauli555 committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    2b9cd53 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2024

  1. count_rows_queries

    BarShauli555 committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    98dc355 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    df7a33a View commit details
    Browse the repository at this point in the history