~sergei.glushchenko/+junk/page-scan-hack

« back to all changes in this revision

Viewing changes to test/inc/sakila-db/sakila-data.sql

  • Committer: Alexey Kopytov
  • Date: 2012-02-02 20:32:55 UTC
  • Revision ID: akopytov@gmail.com-20120202203255-wpbi8j1lrpvd9ks4
Cherrypick of bug826632 fix: parallel option breaks incremental backups

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
COMMIT;
68
68
 
69
69
--
70
 
--
71
 
 
72
 
CREATE TRIGGER customer_create_date BEFORE INSERT ON customer
73
 
        FOR EACH ROW SET NEW.create_date = NOW();
74
 
 
75
 
--
76
70
-- Dumping data for table film
77
71
--
78
72
 
123
116
COMMIT;
124
117
 
125
118
--
126
 
--
127
 
 
128
 
CREATE TRIGGER payment_date BEFORE INSERT ON payment
129
 
        FOR EACH ROW SET NEW.payment_date = NOW();
130
 
 
131
 
--
132
119
-- Dumping data for table rental
133
120
--
134
121
 
139
125
COMMIT;
140
126
 
141
127
--
142
 
--
143
 
 
144
 
CREATE TRIGGER rental_date BEFORE INSERT ON rental
145
 
        FOR EACH ROW SET NEW.rental_date = NOW();
146
 
 
147
 
--
148
128
-- Dumping data for table staff
149
129
--
150
130
 
163
142
 
164
143
SET SQL_MODE=@OLD_SQL_MODE;
165
144
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
166
 
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
 
 
b'\\ No newline at end of file'
 
145
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;