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

Procedures cannot be created in MariadB 10.1.26 #87

Open
karstengit opened this issue Sep 8, 2017 · 0 comments
Open

Procedures cannot be created in MariadB 10.1.26 #87

karstengit opened this issue Sep 8, 2017 · 0 comments

Comments

@karstengit
Copy link

The sense of this procedures is not clear?

Why there is no hint in the installation description that additional tables and/or procedures must be installed?

create procedure create_parent_pages() modifies sql data
begin
create table parent_pages (
parent_page_id int unsigned not null,
page_id int unsigned not null,
primary key (page_id),
foreign key (page_id) references page (page_id) on delete cascade on update cascade,
foreign key (parent_page_id) references page (page_id) on delete cascade on update cascade
)

MySQL meldet: Dokumentation
#1064 - Fehler in der SQL-Syntax. Bitte die korrekte Syntax im Handbuch nachschlagen bei '' in Zeile 9

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant