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

Pdb test #390

Closed
wants to merge 29 commits into from
Closed

Pdb test #390

wants to merge 29 commits into from

Commits on Jun 22, 2023

  1. Add Support to Upsert/Insert Ignore on PDB

    - Makes the implementation of DatabaseEngine optional, so it does not break compatibility with other library clients.
    victorcmg-fdz committed Jun 22, 2023
    Configuration menu
    Copy the full SHA
    1688f06 View commit details
    Browse the repository at this point in the history
  2. Add Support to Upsert/Insert Ignore on PDB

    - Addresses comments: changes message in the default method implementation.
    victorcmg-fdz committed Jun 22, 2023
    Configuration menu
    Copy the full SHA
    1e2b486 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2023

  1. Configuration menu
    Copy the full SHA
    5875eba View commit details
    Browse the repository at this point in the history
  2. Add Support to Upsert/Insert Ignore on PDB

    - Adds support for the following engines: MySQL, DB2.
    - Adds an exception to being thrown when a merge is not possible and use a `MappedEntity` without an `UPSERT` statement.
    victorcmg-fdz committed Jun 29, 2023
    Configuration menu
    Copy the full SHA
    1bcb1e7 View commit details
    Browse the repository at this point in the history
  3. Add Support to Upsert/Insert Ignore on PDB

    - Addresses comments
    victorcmg-fdz committed Jun 29, 2023
    Configuration menu
    Copy the full SHA
    5ad2cb6 View commit details
    Browse the repository at this point in the history
  4. Add Support to Upsert/Insert Ignore on PDB

    - Fix H2Engine variable initialization
    victorcmg-fdz committed Jun 29, 2023
    Configuration menu
    Copy the full SHA
    07fbbbd View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2023

  1. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit 07fbbbd.
    victorcmg-fdz committed Jun 30, 2023
    Configuration menu
    Copy the full SHA
    511f56b View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2023

  1. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit 5ad2cb6.
    victorcmg-fdz committed Jul 3, 2023
    Configuration menu
    Copy the full SHA
    8738daa View commit details
    Browse the repository at this point in the history
  2. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit 1bcb1e7.
    victorcmg-fdz committed Jul 3, 2023
    Configuration menu
    Copy the full SHA
    23a8eff View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fa6d046 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2023

  1. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit 1e2b486.
    
    # Conflicts:
    #	src/main/java/com/feedzai/commons/sql/abstraction/engine/DatabaseEngine.java
    victorcmg-fdz committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    ab4958f View commit details
    Browse the repository at this point in the history
  2. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit 1688f06.
    victorcmg-fdz committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    23817e8 View commit details
    Browse the repository at this point in the history
  3. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit d626297.
    victorcmg-fdz committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    3cd2cc6 View commit details
    Browse the repository at this point in the history
  4. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit 1d32f7f.
    victorcmg-fdz committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    01f5a35 View commit details
    Browse the repository at this point in the history
  5. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit 36a434c.
    victorcmg-fdz committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    903a354 View commit details
    Browse the repository at this point in the history
  6. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit 1658965.
    victorcmg-fdz committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    fa01914 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2023

  1. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit d2f153b.
    victorcmg-fdz committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    02dd9a2 View commit details
    Browse the repository at this point in the history
  2. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit 2f0d1ff.
    victorcmg-fdz committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    1885337 View commit details
    Browse the repository at this point in the history
  3. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit 348a22d.
    victorcmg-fdz committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    d5e1916 View commit details
    Browse the repository at this point in the history
  4. Revert "Add Support to Upsert/Insert Ignore on PDB"

    This reverts commit e100a51.
    victorcmg-fdz committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    56dcfca View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2381e5d View commit details
    Browse the repository at this point in the history
  6. Revert "Put null check inside objectToArray method"

    This reverts commit a3b126d.
    victorcmg-fdz committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    72ae9d5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a3bb8df View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a0e9f9a View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2023

  1. Add Support to Upsert/Insert Ignore on PDB

    - Removes JVM 11 and 17 from workflow.
    victorcmg-fdz committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    062390e View commit details
    Browse the repository at this point in the history
  2. Add Support to Upsert/Insert Ignore on PDB

    - Run Oracle workflow on JVM 11.
    victorcmg-fdz committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    8da729b View commit details
    Browse the repository at this point in the history
  3. Add Support to Upsert/Insert Ignore on PDB

    - Run Oracle workflow on JVM 17.
    victorcmg-fdz committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    2c8e1af View commit details
    Browse the repository at this point in the history
  4. Add Support to Upsert/Insert Ignore on PDB

    - Run Oracle workflow with max-parallel property set to 1.
    victorcmg-fdz committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    8cded5d View commit details
    Browse the repository at this point in the history
  5. Add Support to Upsert/Insert Ignore on PDB

    - Fiz proeprty position.
    victorcmg-fdz committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    cda1361 View commit details
    Browse the repository at this point in the history