GithubHelp home page GithubHelp logo

Comments (4)

peterjaap avatar peterjaap commented on June 16, 2024

order_customer and order_address table seems to contain multiple records with the same id ?

image

from masquerade.

peterjaap avatar peterjaap commented on June 16, 2024

I guess the problem stems from here, where MySQL doesn't recognize it as an existing row and inserts a new one; https://github.com/elgentos/masquerade/blob/master/src/Elgentos/Masquerade/DataProcessor/TableService.php#L378

from masquerade.

peterjaap avatar peterjaap commented on June 16, 2024

Probably because the table has two primary keys and Masquerade identifies the wrong one;

mysql> describe order_customer;
+------------------+--------------+------+-----+---------+-------+
| Field            | Type         | Null | Key | Default | Extra |
+------------------+--------------+------+-----+---------+-------+
| id               | binary(16)   | NO   | PRI | NULL    |       |
| version_id       | binary(16)   | NO   | PRI | NULL    |       |
| customer_id      | binary(16)   | YES  | MUL | NULL    |       |
| order_id         | binary(16)   | NO   | MUL | NULL    |       |
| order_version_id | binary(16)   | NO   |     | NULL    |       |
| email            | varchar(254) | NO   |     | NULL    |       |
| salutation_id    | binary(16)   | NO   | MUL | NULL    |       |
| first_name       | varchar(255) | NO   |     | NULL    |       |
| last_name        | varchar(255) | NO   |     | NULL    |       |
| title            | varchar(100) | YES  |     | NULL    |       |
| company          | varchar(255) | YES  |     | NULL    |       |
| customer_number  | varchar(255) | YES  |     | NULL    |       |
| custom_fields    | json         | YES  |     | NULL    |       |
| created_at       | datetime(3)  | NO   |     | NULL    |       |
| updated_at       | datetime(3)  | YES  |     | NULL    |       |
| remote_address   | varchar(255) | YES  |     | NULL    |       |
+------------------+--------------+------+-----+---------+-------+

from masquerade.

peterjaap avatar peterjaap commented on June 16, 2024

This problem occurs because Masquerade at this point assumes a table only has one primary key. @IvanChepurnyi any idea how to allow for multiple PK's?

from masquerade.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.