Re: Foreign Key MATCH constraint

2006-11-10 Thread Giorgio Zarrelli
Alle 14:04, giovedì 9 novembre 2006, Heikki Tuuri ha scritto: Giorgio, InnoDB only implements MATCH SIMPLE. MySQL/InnoDB ignores the MATCH clause that you specify in the foreign key constraint definition. Thanks a lot :-) Giorgio -- MySQL General Mailing List For list archives:

Re: Foreign Key MATCH constraint

2006-11-09 Thread Heikki Tuuri
Giorgio, InnoDB only implements MATCH SIMPLE. MySQL/InnoDB ignores the MATCH clause that you specify in the foreign key constraint definition. http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt A referential constraint is satisfied if one of the following con-

Foreign Key MATCH constraint

2006-11-03 Thread Giorgio Zarrelli
Hi, I was looking at the CREATE TABLE syntax and I saw this reference definition for InnoDB tables: reference_definition: REFERENCES tbl_name [(index_col_name,...)] [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE] [ON DELETE reference_option] [ON UPDATE reference_option] reference_option: RESTRICT

Foreign Key MATCH constraint

2006-11-03 Thread Giorgio Zarrelli
Hi, I was looking at the CREATE TABLE syntax and I saw this reference definition for InnoDB tables: reference_definition: REFERENCES tbl_name [(index_col_name,...)] [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE] [ON DELETE reference_option] [ON UPDATE reference_option] reference_option: RESTRICT