Relational grammar ignored on project generation

Discussion of open issues, suggestions and bugs regarding database management and administration tools for MySQL
Post Reply
terryweiss
Posts: 5
Joined: Wed 06 May 2015 21:39

Relational grammar ignored on project generation

Post by terryweiss » Thu 22 Oct 2015 20:43

When working with foreign keys and creating actions on update and delete, this code:

Code: Select all

references `incident.assessments` (`id`) on delete restrict on update cascade,
produces

Code: Select all

references `incident.assessments` (id) on delete no action on update cascade
Notice that

Code: Select all

delete restrict
was changed to

Code: Select all

delete no action
. A somewhat different command :)

t.

alexa

Re: Relational grammar ignored on project generation

Post by alexa » Fri 23 Oct 2015 13:10

We will investigate this issue and will answer you as soon as possible.

alexa

Re: Relational grammar ignored on project generation

Post by alexa » Fri 23 Oct 2015 14:21

We recommend you to refer to the following article http://dev.mysql.com/doc/refman/5.6/en/ ... -keys.html

Post Reply