Server IP : 104.21.38.3 / Your IP : 162.158.88.101 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/ndb/t/ |
Upload File : |
--source include/have_ndb.inc # test uses mysqldump, hence not in embedded --source include/not_embedded.inc # # Test restoring of .sql file created with mysqldump # - somewhat more complex schema than ndb_fk_mysqldump.test --disable_query_log create table product ( category int not null, id int not null, price decimal, primary key(category, id)) engine=ndb; create table customer ( id int not null, primary key (id)) engine=ndb; create table address ( no int not null auto_increment, type int not null default 37, customer_id int not null, street varchar(255), country int, primary key (no), constraint ca_fk1 foreign key (customer_id) references customer(id) on update restrict on delete cascade) engine=ndb; create table product_order ( no int not null auto_increment, product_category int not null, product_id int not null, customer_id int not null, primary key(no), index (product_category, product_id), constraint po_fk1 foreign key (product_category, product_id) references product(category, id) on update restrict on delete cascade, index (customer_id), constraint po_fk2 foreign key (customer_id) references customer(id)) engine=ndb; insert into product values (1,1,5); insert into customer value (1); insert into address (customer_id, street, country) values (1, "Main st. 1215", 48); insert into product_order value (1,1,1,1); echo Creating dump...; let $dump_file = $MYSQLTEST_VARDIR/tmp/ndb_fk_dump2.sql; --exec $MYSQL_DUMP --databases test > $dump_file echo OK, dump created!; drop table product_order, address, customer, product; echo Restoring dump...; --exec $MYSQL test < $dump_file --remove_file $dump_file echo OK, dump restored!; drop table product_order, address, customer, product; --enable_query_log