We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The new "listing" mode for SQL statements dumping removes semicolons at the end of the statements and adds an asterisk prefix to each line.
https://github.com/doctrine/orm/pull/9019/files#diff-7579891fde50fb7e38d285004486c0210492efdbdc00815a978e053ff3cb0017R93
This new type of output significantly complicates the possibility of copying SQL statements.
The following SQL statements will be executed: CREATE TABLE authorized_identity (id UUID NOT NULL, identity_id UUID NOT NULL, PRIMARY KEY(id));
The following SQL statements will be executed: * CREATE TABLE authorized_identity (id UUID NOT NULL, identity_id UUID NOT NULL, PRIMARY KEY(id))
The text was updated successfully, but these errors were encountered:
See #9679
Sorry, something went wrong.
No branches or pull requests
BC Break Report
Summary
The new "listing" mode for SQL statements dumping removes semicolons at the end of the statements and adds an asterisk prefix to each line.
https://github.com/doctrine/orm/pull/9019/files#diff-7579891fde50fb7e38d285004486c0210492efdbdc00815a978e053ff3cb0017R93
This new type of output significantly complicates the possibility of copying SQL statements.
Previous behavior
Current behavior
The text was updated successfully, but these errors were encountered: