schedule_fu 0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +34 -0
- data/Rakefile +40 -0
- data/app/models/calendar.rb +26 -0
- data/app/models/calendar_date.rb +76 -0
- data/app/models/calendar_event.rb +157 -0
- data/app/models/calendar_event_date.rb +8 -0
- data/app/models/calendar_event_mod.rb +8 -0
- data/app/models/calendar_event_type.rb +3 -0
- data/app/models/calendar_recurrence.rb +9 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20120121210741_add_schedule_fu_tables.rb +167 -0
- data/lib/schedule_fu.rb +8 -0
- data/lib/schedule_fu/calendar_helper.rb +247 -0
- data/lib/schedule_fu/engine.rb +5 -0
- data/lib/schedule_fu/finder.rb +16 -0
- data/lib/schedule_fu/parser.rb +108 -0
- data/lib/schedule_fu/schedule_fu_helper.rb +17 -0
- data/lib/schedule_fu/version.rb +3 -0
- data/lib/tasks/schedule_fu_tasks.rake +4 -0
- data/test/calendar_event_test.rb +229 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +56 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +9 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/db/migrate/20120121220057_add_schedule_fu_tables.schedule_fu.rb +168 -0
- data/test/dummy/db/schema.rb +82 -0
- data/test/dummy/log/development.log +283 -0
- data/test/dummy/log/test.log +2224 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/factories/calendar.rb +5 -0
- data/test/factories/calendar_event.rb +35 -0
- data/test/test_helper.rb +20 -0
- metadata +215 -0
@@ -0,0 +1,2224 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
3
|
+
[1m[36m (74.0ms)[0m [1mCOMMIT[0m
|
4
|
+
[1m[35m (0.2ms)[0m BEGIN
|
5
|
+
[1m[36m (13.1ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
6
|
+
[1m[35mCalendarDate Load (0.4ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
7
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 22, 3, '2012-01-22', 0)[0m
|
8
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 23, 3, '2012-01-23', 1)
|
9
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 24, 3, '2012-01-24', 2)[0m
|
10
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 25, 3, '2012-01-25', 3)
|
11
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 26, 3, '2012-01-26', 4)[0m
|
12
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 27, 3, '2012-01-27', 5)
|
13
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 28, 3, '2012-01-28', 6)[0m
|
14
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 29, 4, '2012-01-29', 0)
|
15
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 30, 4, '2012-01-30', 1)[0m
|
16
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 31, 4, '2012-01-31', 2)
|
17
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 1, 0, '2012-02-01', 3)[0m
|
18
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 2, 0, '2012-02-02', 4)
|
19
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 3, 0, '2012-02-03', 5)[0m
|
20
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 4, 0, '2012-02-04', 6)
|
21
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 3, 2, 'some event description', '2012-02-04 21:58:13', NULL, NULL, '2012-01-22 21:58:13', NULL)[0m
|
22
|
+
[1m[35mCalendarDate Load (5.8ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` WHERE (value IN ('2011-01-22','2011-01-23','2011-01-24','2011-01-25','2011-01-26','2011-01-27','2011-01-28','2011-01-29','2011-01-30','2011-01-31','2011-02-01','2011-02-02','2011-02-03','2011-02-04','2011-02-05','2011-02-06','2011-02-07','2011-02-08','2011-02-09','2011-02-10','2011-02-11','2011-02-12','2011-02-13','2011-02-14','2011-02-15','2011-02-16','2011-02-17','2011-02-18','2011-02-19','2011-02-20','2011-02-21','2011-02-22','2011-02-23','2011-02-24','2011-02-25','2011-02-26','2011-02-27','2011-02-28','2011-03-01','2011-03-02','2011-03-03','2011-03-04','2011-03-05','2011-03-06','2011-03-07','2011-03-08','2011-03-09','2011-03-10','2011-03-11','2011-03-12','2011-03-13','2011-03-14','2011-03-15','2011-03-16','2011-03-17','2011-03-18','2011-03-19','2011-03-20','2011-03-21','2011-03-22','2011-03-23','2011-03-24','2011-03-25','2011-03-26','2011-03-27','2011-03-28','2011-03-29','2011-03-30','2011-03-31','2011-04-01','2011-04-02','2011-04-03','2011-04-04','2011-04-05','2011-04-06','2011-04-07','2011-04-08','2011-04-09','2011-04-10','2011-04-11','2011-04-12','2011-04-13','2011-04-14','2011-04-15','2011-04-16','2011-04-17','2011-04-18','2011-04-19','2011-04-20','2011-04-21','2011-04-22','2011-04-23','2011-04-24','2011-04-25','2011-04-26','2011-04-27','2011-04-28','2011-04-29','2011-04-30','2011-05-01','2011-05-02','2011-05-03','2011-05-04','2011-05-05','2011-05-06','2011-05-07','2011-05-08','2011-05-09','2011-05-10','2011-05-11','2011-05-12','2011-05-13','2011-05-14','2011-05-15','2011-05-16','2011-05-17','2011-05-18','2011-05-19','2011-05-20','2011-05-21','2011-05-22','2011-05-23','2011-05-24','2011-05-25','2011-05-26','2011-05-27','2011-05-28','2011-05-29','2011-05-30','2011-05-31','2011-06-01','2011-06-02','2011-06-03','2011-06-04','2011-06-05','2011-06-06','2011-06-07','2011-06-08','2011-06-09','2011-06-10','2011-06-11','2011-06-12','2011-06-13','2011-06-14','2011-06-15','2011-06-16','2011-06-17','2011-06-18','2011-06-19','2011-06-20','2011-06-21','2011-06-22','2011-06-23','2011-06-24','2011-06-25','2011-06-26','2011-06-27','2011-06-28','2011-06-29','2011-06-30','2011-07-01','2011-07-02','2011-07-03','2011-07-04','2011-07-05','2011-07-06','2011-07-07','2011-07-08','2011-07-09','2011-07-10','2011-07-11','2011-07-12','2011-07-13','2011-07-14','2011-07-15','2011-07-16','2011-07-17','2011-07-18','2011-07-19','2011-07-20','2011-07-21','2011-07-22','2011-07-23','2011-07-24','2011-07-25','2011-07-26','2011-07-27','2011-07-28','2011-07-29','2011-07-30','2011-07-31','2011-08-01','2011-08-02','2011-08-03','2011-08-04','2011-08-05','2011-08-06','2011-08-07','2011-08-08','2011-08-09','2011-08-10','2011-08-11','2011-08-12','2011-08-13','2011-08-14','2011-08-15','2011-08-16','2011-08-17','2011-08-18','2011-08-19','2011-08-20','2011-08-21','2011-08-22','2011-08-23','2011-08-24','2011-08-25','2011-08-26','2011-08-27','2011-08-28','2011-08-29','2011-08-30','2011-08-31','2011-09-01','2011-09-02','2011-09-03','2011-09-04','2011-09-05','2011-09-06','2011-09-07','2011-09-08','2011-09-09','2011-09-10','2011-09-11','2011-09-12','2011-09-13','2011-09-14','2011-09-15','2011-09-16','2011-09-17','2011-09-18','2011-09-19','2011-09-20','2011-09-21','2011-09-22','2011-09-23','2011-09-24','2011-09-25','2011-09-26','2011-09-27','2011-09-28','2011-09-29','2011-09-30','2011-10-01','2011-10-02','2011-10-03','2011-10-04','2011-10-05','2011-10-06','2011-10-07','2011-10-08','2011-10-09','2011-10-10','2011-10-11','2011-10-12','2011-10-13','2011-10-14','2011-10-15','2011-10-16','2011-10-17','2011-10-18','2011-10-19','2011-10-20','2011-10-21','2011-10-22','2011-10-23','2011-10-24','2011-10-25','2011-10-26','2011-10-27','2011-10-28','2011-10-29','2011-10-30','2011-10-31','2011-11-01','2011-11-02','2011-11-03','2011-11-04','2011-11-05','2011-11-06','2011-11-07','2011-11-08','2011-11-09','2011-11-10','2011-11-11','2011-11-12','2011-11-13','2011-11-14','2011-11-15','2011-11-16','2011-11-17','2011-11-18','2011-11-19','2011-11-20','2011-11-21','2011-11-22','2011-11-23','2011-11-24','2011-11-25','2011-11-26','2011-11-27','2011-11-28','2011-11-29','2011-11-30','2011-12-01','2011-12-02','2011-12-03','2011-12-04','2011-12-05','2011-12-06','2011-12-07','2011-12-08','2011-12-09','2011-12-10','2011-12-11','2011-12-12','2011-12-13','2011-12-14','2011-12-15','2011-12-16','2011-12-17','2011-12-18','2011-12-19','2011-12-20','2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21','2013-01-22','2013-01-23','2013-01-24','2013-01-25','2013-01-26','2013-01-27','2013-01-28','2013-01-29','2013-01-30','2013-01-31','2013-02-01','2013-02-02','2013-02-03','2013-02-04'))
|
23
|
+
[1m[36mCalendarEventType Load (3.5ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 3 LIMIT 1[0m
|
24
|
+
[1m[35m (43.2ms)[0m BEGIN
|
25
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 22, 3, '2011-01-22', 6)[0m
|
26
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 1
|
27
|
+
[1m[36m (56.5ms)[0m [1mCOMMIT[0m
|
28
|
+
[1m[35m (1.4ms)[0m BEGIN
|
29
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 23, 3, '2011-01-23', 0)[0m
|
30
|
+
[1m[35m (115.0ms)[0m COMMIT
|
31
|
+
[1m[36m (111.8ms)[0m [1mCOMMIT[0m
|
32
|
+
[1m[35m (0.3ms)[0m BEGIN
|
33
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 24, 3, '2011-01-24', 1)[0m
|
34
|
+
[1m[35mCalendarDate Load (47.2ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 1
|
35
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
36
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
37
|
+
[1m[36m (69.0ms)[0m [1mCOMMIT[0m
|
38
|
+
[1m[35m (0.1ms)[0m BEGIN
|
39
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 25, 3, '2011-01-25', 2)[0m
|
40
|
+
[1m[35m (70.3ms)[0m COMMIT
|
41
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
42
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
43
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 3, 3, 'some event description', '2012-02-04 21:58:14', NULL, NULL, '2012-01-22 21:58:14', NULL)[0m
|
44
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 3 LIMIT 1
|
45
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 2[0m
|
46
|
+
[1m[35m (97.5ms)[0m COMMIT
|
47
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
48
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 26, 3, '2011-01-26', 3)
|
49
|
+
[1m[36m (81.5ms)[0m [1mCOMMIT[0m
|
50
|
+
[1m[35m (1.2ms)[0m SELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 2
|
51
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
52
|
+
[1m[35mSQL (10.6ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
53
|
+
[1m[36m (97.9ms)[0m [1mCOMMIT[0m
|
54
|
+
[1m[35m (0.1ms)[0m BEGIN
|
55
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 27, 3, '2011-01-27', 4)[0m
|
56
|
+
[1m[35m (81.7ms)[0m COMMIT
|
57
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
58
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
59
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 3, 4, 'some event description', '2012-02-04 21:58:14', NULL, NULL, '2012-01-22 21:58:14', NULL)[0m
|
60
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 3 LIMIT 1
|
61
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 3[0m
|
62
|
+
[1m[35m (86.1ms)[0m COMMIT
|
63
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
64
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 28, 3, '2011-01-28', 5)
|
65
|
+
[1m[36m (81.2ms)[0m [1mCOMMIT[0m
|
66
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 3
|
67
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
68
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
69
|
+
[1m[36m (86.1ms)[0m [1mCOMMIT[0m
|
70
|
+
[1m[35m (0.1ms)[0m BEGIN
|
71
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 29, 4, '2011-01-29', 6)[0m
|
72
|
+
[1m[35m (82.9ms)[0m COMMIT
|
73
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
74
|
+
[1m[35m (0.8ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))
|
75
|
+
[1m[36mCalendarDate Load (0.9ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))[0m
|
76
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 14, 1, '2012-01-14', 6)
|
77
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 15, 2, '2012-01-15', 0)[0m
|
78
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 16, 2, '2012-01-16', 1)
|
79
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 17, 2, '2012-01-17', 2)[0m
|
80
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 18, 2, '2012-01-18', 3)
|
81
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 19, 2, '2012-01-19', 4)[0m
|
82
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 20, 2, '2012-01-20', 5)
|
83
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 21, 2, '2012-01-21', 6)[0m
|
84
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 5, 0, '2012-02-05', 0)
|
85
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 6, 0, '2012-02-06', 1)[0m
|
86
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 7, 0, '2012-02-07', 2)
|
87
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 8, 1, '2012-02-08', 3)[0m
|
88
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 9, 1, '2012-02-09', 4)
|
89
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 10, 1, '2012-02-10', 5)[0m
|
90
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 11, 1, '2012-02-11', 6)
|
91
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 12, 1, '2012-02-12', 0)[0m
|
92
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 13, 1, '2012-02-13', 1)
|
93
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 14, 1, '2012-02-14', 2)[0m
|
94
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 15, 2, '2012-02-15', 3)
|
95
|
+
[1m[36m (86.4ms)[0m [1mCOMMIT[0m
|
96
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 16, 2, '2012-02-16', 4)
|
97
|
+
[1m[36m (1.6ms)[0m [1mBEGIN[0m
|
98
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 17, 2, '2012-02-17', 5)
|
99
|
+
[1m[36mSQL (2.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 30, 4, '2011-01-30', 0)[0m
|
100
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 18, 2, '2012-02-18', 6)
|
101
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 19, 2, '2012-02-19', 0)[0m
|
102
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 20, 2, '2012-02-20', 1)
|
103
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 21, 2, '2012-02-21', 2)[0m
|
104
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 22, 3, '2012-02-22', 3)
|
105
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 23, 3, '2012-02-23', 4)[0m
|
106
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 24, 3, '2012-02-24', 5)
|
107
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 25, 3, '2012-02-25', 6)[0m
|
108
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 26, 3, '2012-02-26', 0)
|
109
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 27, 3, '2012-02-27', 1)[0m
|
110
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 28, 3, '2012-02-28', 2)
|
111
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 29, 4, '2012-02-29', 3)[0m
|
112
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 1, 0, '2012-03-01', 4)
|
113
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 2, 0, '2012-03-02', 5)[0m
|
114
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 3, 0, '2012-03-03', 6)
|
115
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 4, 0, '2012-03-04', 0)[0m
|
116
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 5, 0, '2012-03-05', 1)
|
117
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 6, 0, '2012-03-06', 2)[0m
|
118
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 7, 0, '2012-03-07', 3)
|
119
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 8, 1, '2012-03-08', 4)[0m
|
120
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 9, 1, '2012-03-09', 5)
|
121
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 10, 1, '2012-03-10', 6)[0m
|
122
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 11, 1, '2012-03-11', 0)
|
123
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 12, 1, '2012-03-12', 1)[0m
|
124
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 13, 1, '2012-03-13', 2)
|
125
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 14, 1, '2012-03-14', 3)[0m
|
126
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 15, 2, '2012-03-15', 4)
|
127
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 16, 2, '2012-03-16', 5)[0m
|
128
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 17, 2, '2012-03-17', 6)
|
129
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 18, 2, '2012-03-18', 0)[0m
|
130
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 19, 2, '2012-03-19', 1)
|
131
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 20, 2, '2012-03-20', 2)[0m
|
132
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 21, 2, '2012-03-21', 3)
|
133
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 22, 3, '2012-03-22', 4)[0m
|
134
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 23, 3, '2012-03-23', 5)
|
135
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 24, 3, '2012-03-24', 6)[0m
|
136
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 25, 3, '2012-03-25', 0)
|
137
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 26, 3, '2012-03-26', 1)[0m
|
138
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 27, 3, '2012-03-27', 2)
|
139
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 28, 3, '2012-03-28', 3)[0m
|
140
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 29, 4, '2012-03-29', 4)
|
141
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 30, 4, '2012-03-30', 5)[0m
|
142
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 31, 4, '2012-03-31', 6)
|
143
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 1, 0, '2012-04-01', 0)[0m
|
144
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 2, 0, '2012-04-02', 1)
|
145
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 3, 0, '2012-04-03', 2)[0m
|
146
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 4, 0, '2012-04-04', 3)
|
147
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 5, 0, '2012-04-05', 4)[0m
|
148
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 6, 0, '2012-04-06', 5)
|
149
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 7, 0, '2012-04-07', 6)[0m
|
150
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 8, 1, '2012-04-08', 0)
|
151
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 9, 1, '2012-04-09', 1)[0m
|
152
|
+
[1m[35m (84.1ms)[0m COMMIT
|
153
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 10, 1, '2012-04-10', 2)[0m
|
154
|
+
[1m[35m (1.5ms)[0m BEGIN
|
155
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 11, 1, '2012-04-11', 3)[0m
|
156
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 31, 4, '2011-01-31', 1)
|
157
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 12, 1, '2012-04-12', 4)[0m
|
158
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 13, 1, '2012-04-13', 5)
|
159
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 14, 1, '2012-04-14', 6)[0m
|
160
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 15, 2, '2012-04-15', 0)
|
161
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 16, 2, '2012-04-16', 1)[0m
|
162
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 17, 2, '2012-04-17', 2)
|
163
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 18, 2, '2012-04-18', 3)[0m
|
164
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 19, 2, '2012-04-19', 4)
|
165
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 20, 2, '2012-04-20', 5)[0m
|
166
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 21, 2, '2012-04-21', 6)
|
167
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 22, 3, '2012-04-22', 0)[0m
|
168
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 23, 3, '2012-04-23', 1)
|
169
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 24, 3, '2012-04-24', 2)[0m
|
170
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 25, 3, '2012-04-25', 3)
|
171
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 26, 3, '2012-04-26', 4)[0m
|
172
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 27, 3, '2012-04-27', 5)
|
173
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 28, 3, '2012-04-28', 6)[0m
|
174
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 29, 4, '2012-04-29', 0)
|
175
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 30, 4, '2012-04-30', 1)[0m
|
176
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 1, 0, '2012-05-01', 2)
|
177
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 2, 0, '2012-05-02', 3)[0m
|
178
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 3, 0, '2012-05-03', 4)
|
179
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 4, 0, '2012-05-04', 5)[0m
|
180
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 5, 0, '2012-05-05', 6)
|
181
|
+
[1m[36m (38.6ms)[0m [1mCOMMIT[0m
|
182
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 6, 0, '2012-05-06', 0)
|
183
|
+
[1m[36m (1.4ms)[0m [1mBEGIN[0m
|
184
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 7, 0, '2012-05-07', 1)
|
185
|
+
[1m[36mSQL (1.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 1, 0, '2011-02-01', 2)[0m
|
186
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 8, 1, '2012-05-08', 2)
|
187
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 9, 1, '2012-05-09', 3)[0m
|
188
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 10, 1, '2012-05-10', 4)
|
189
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 11, 1, '2012-05-11', 5)[0m
|
190
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 12, 1, '2012-05-12', 6)
|
191
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 13, 1, '2012-05-13', 0)[0m
|
192
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 14, 1, '2012-05-14', 1)
|
193
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 15, 2, '2012-05-15', 2)[0m
|
194
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 16, 2, '2012-05-16', 3)
|
195
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 17, 2, '2012-05-17', 4)[0m
|
196
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 18, 2, '2012-05-18', 5)
|
197
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 19, 2, '2012-05-19', 6)[0m
|
198
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 20, 2, '2012-05-20', 0)
|
199
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 21, 2, '2012-05-21', 1)[0m
|
200
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 22, 3, '2012-05-22', 2)
|
201
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 23, 3, '2012-05-23', 3)[0m
|
202
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 24, 3, '2012-05-24', 4)
|
203
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 25, 3, '2012-05-25', 5)[0m
|
204
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 26, 3, '2012-05-26', 6)
|
205
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 27, 3, '2012-05-27', 0)[0m
|
206
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 28, 3, '2012-05-28', 1)
|
207
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 29, 4, '2012-05-29', 2)[0m
|
208
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 30, 4, '2012-05-30', 3)
|
209
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 31, 4, '2012-05-31', 4)[0m
|
210
|
+
[1m[35m (40.1ms)[0m COMMIT
|
211
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 1, 0, '2012-06-01', 5)[0m
|
212
|
+
[1m[35m (1.5ms)[0m BEGIN
|
213
|
+
[1m[36mSQL (1.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 2, 0, '2012-06-02', 6)[0m
|
214
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 2, 0, '2011-02-02', 3)
|
215
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 3, 0, '2012-06-03', 0)[0m
|
216
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 4, 0, '2012-06-04', 1)
|
217
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 5, 0, '2012-06-05', 2)[0m
|
218
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 6, 0, '2012-06-06', 3)
|
219
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 7, 0, '2012-06-07', 4)[0m
|
220
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 8, 1, '2012-06-08', 5)
|
221
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 9, 1, '2012-06-09', 6)[0m
|
222
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 10, 1, '2012-06-10', 0)
|
223
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 11, 1, '2012-06-11', 1)[0m
|
224
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 12, 1, '2012-06-12', 2)
|
225
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 13, 1, '2012-06-13', 3)[0m
|
226
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 14, 1, '2012-06-14', 4)
|
227
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 15, 2, '2012-06-15', 5)[0m
|
228
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 16, 2, '2012-06-16', 6)
|
229
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 17, 2, '2012-06-17', 0)[0m
|
230
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 18, 2, '2012-06-18', 1)
|
231
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 19, 2, '2012-06-19', 2)[0m
|
232
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 20, 2, '2012-06-20', 3)
|
233
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 21, 2, '2012-06-21', 4)[0m
|
234
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 5, 5, 'some event description', '2012-06-21 21:58:14', NULL, NULL, '2012-01-14 21:58:14', NULL)
|
235
|
+
[1m[36mCalendarEventType Load (0.3ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1[0m
|
236
|
+
[1m[35m (39.3ms)[0m COMMIT
|
237
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
238
|
+
[1m[35mSQL (1.8ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 3, 0, '2011-02-03', 4)
|
239
|
+
[1m[36mCalendarRecurrence Load (0.8ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
240
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
241
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
242
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
243
|
+
[1m[36mCalendarRecurrence Load (0.2ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
244
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
245
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
246
|
+
[1m[35mCalendarRecurrence Load (0.2ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4
|
247
|
+
[1m[36mCalendarEvent Load (0.4ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 4 LIMIT 1[0m
|
248
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (4, 1, 14, 1, 6)
|
249
|
+
[1m[36m (38.8ms)[0m [1mCOMMIT[0m
|
250
|
+
[1m[35m (0.1ms)[0m BEGIN
|
251
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 4, 0, '2011-02-04', 5)[0m
|
252
|
+
[1m[35m (54.8ms)[0m COMMIT
|
253
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4[0m
|
254
|
+
[1m[35m (0.1ms)[0m BEGIN
|
255
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
256
|
+
[1m[35m (86.4ms)[0m COMMIT
|
257
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
258
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 5, 0, '2011-02-05', 6)
|
259
|
+
[1m[36m (72.9ms)[0m [1mCOMMIT[0m
|
260
|
+
[1m[35m (0.1ms)[0m BEGIN
|
261
|
+
[1m[36m (1.6ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))[0m
|
262
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 5, 6, 'some event description', '2012-06-21 21:58:15', NULL, NULL, '2012-01-14 21:58:15', NULL)
|
263
|
+
[1m[36mCalendarEventType Load (0.2ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1[0m
|
264
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
265
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
266
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
267
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
268
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
269
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
270
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
271
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5[0m
|
272
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 5 LIMIT 1
|
273
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (5, 1, 14, 1, 6)[0m
|
274
|
+
[1m[35m (86.2ms)[0m COMMIT
|
275
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
276
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 6, 0, '2011-02-06', 0)
|
277
|
+
[1m[36m (60.4ms)[0m [1mCOMMIT[0m
|
278
|
+
[1m[35m (5.8ms)[0m SELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 5
|
279
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
280
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
281
|
+
[1m[36m (86.5ms)[0m [1mCOMMIT[0m
|
282
|
+
[1m[35m (0.1ms)[0m BEGIN
|
283
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 7, 0, '2011-02-07', 1)[0m
|
284
|
+
[1m[35m (77.5ms)[0m COMMIT
|
285
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
286
|
+
[1m[35m (1.3ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))
|
287
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 5, 7, 'some event description', '2012-06-21 21:58:15', NULL, NULL, '2012-01-14 21:58:15', NULL)[0m
|
288
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1
|
289
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
290
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
291
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
292
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
293
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
294
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
295
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
296
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6
|
297
|
+
[1m[36mCalendarEvent Load (0.4ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 6 LIMIT 1[0m
|
298
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (6, 1, 14, 1, 6)
|
299
|
+
[1m[36m (85.9ms)[0m [1mCOMMIT[0m
|
300
|
+
[1m[35m (0.2ms)[0m BEGIN
|
301
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 8, 1, '2011-02-08', 2)[0m
|
302
|
+
[1m[35m (60.5ms)[0m COMMIT
|
303
|
+
[1m[36mCalendarDate Load (7.3ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 6[0m
|
304
|
+
[1m[35m (0.1ms)[0m BEGIN
|
305
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
306
|
+
[1m[35m (96.8ms)[0m COMMIT
|
307
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
308
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 9, 1, '2011-02-09', 3)
|
309
|
+
[1m[36m (98.8ms)[0m [1mCOMMIT[0m
|
310
|
+
[1m[35m (0.1ms)[0m BEGIN
|
311
|
+
[1m[36m (1.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))[0m
|
312
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 5, 8, 'some event description', '2012-06-21 21:58:15', NULL, NULL, '2012-01-14 21:58:15', NULL)
|
313
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1[0m
|
314
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
315
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
316
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
317
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
318
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
319
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
320
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
321
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7[0m
|
322
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 7 LIMIT 1
|
323
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (7, 1, 14, 1, 6)[0m
|
324
|
+
[1m[35m (110.1ms)[0m COMMIT
|
325
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
326
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 10, 1, '2011-02-10', 4)
|
327
|
+
[1m[36m (83.0ms)[0m [1mCOMMIT[0m
|
328
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7
|
329
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
330
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
331
|
+
[1m[36m (108.1ms)[0m [1mCOMMIT[0m
|
332
|
+
[1m[35m (0.1ms)[0m BEGIN
|
333
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 11, 1, '2011-02-11', 5)[0m
|
334
|
+
[1m[35m (94.3ms)[0m COMMIT
|
335
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
336
|
+
[1m[35m (1.3ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))
|
337
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 5, 9, 'some event description', '2012-06-21 21:58:15', NULL, NULL, '2012-01-14 21:58:15', NULL)[0m
|
338
|
+
[1m[35mCalendarEventType Load (0.2ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1
|
339
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
340
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
341
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
342
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
343
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
344
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
345
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
346
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8
|
347
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 8 LIMIT 1[0m
|
348
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (8, 1, 14, 1, 6)
|
349
|
+
[1m[36m (86.3ms)[0m [1mCOMMIT[0m
|
350
|
+
[1m[35m (0.1ms)[0m BEGIN
|
351
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 12, 1, '2011-02-12', 6)[0m
|
352
|
+
[1m[35m (61.9ms)[0m COMMIT
|
353
|
+
[1m[36m (6.8ms)[0m [1mSELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 8[0m
|
354
|
+
[1m[35m (0.1ms)[0m BEGIN
|
355
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
356
|
+
[1m[35m (86.3ms)[0m COMMIT
|
357
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
358
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 13, 1, '2011-02-13', 0)
|
359
|
+
[1m[36m (76.2ms)[0m [1mCOMMIT[0m
|
360
|
+
[1m[35m (0.1ms)[0m BEGIN
|
361
|
+
[1m[36m (1.3ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))[0m
|
362
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 5, 10, 'some event description', '2012-06-21 21:58:16', NULL, NULL, '2012-01-14 21:58:16', NULL)
|
363
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1[0m
|
364
|
+
[1m[35mCalendarRecurrence Load (0.5ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
365
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
366
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
367
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
368
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
369
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
370
|
+
[1m[35m (102.9ms)[0m COMMIT
|
371
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
372
|
+
[1m[35mCalendarRecurrence Load (3.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
373
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 14, 1, '2011-02-14', 1)[0m
|
374
|
+
[1m[35mCalendarRecurrence Load (0.7ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9
|
375
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 9 LIMIT 1[0m
|
376
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (9, 1, 14, 1, 6)
|
377
|
+
[1m[36m (45.2ms)[0m [1mCOMMIT[0m
|
378
|
+
[1m[35m (0.1ms)[0m BEGIN
|
379
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 15, 2, '2011-02-15', 2)[0m
|
380
|
+
[1m[35m (85.0ms)[0m COMMIT
|
381
|
+
[1m[36mCalendarDate Load (7.6ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 9[0m
|
382
|
+
[1m[35m (0.1ms)[0m BEGIN
|
383
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
384
|
+
[1m[35m (86.1ms)[0m COMMIT
|
385
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
386
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 16, 2, '2011-02-16', 3)
|
387
|
+
[1m[36m (74.6ms)[0m [1mCOMMIT[0m
|
388
|
+
[1m[35m (0.1ms)[0m BEGIN
|
389
|
+
[1m[36m (1.7ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))[0m
|
390
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 5, 11, 'some event description', '2012-06-21 21:58:16', NULL, NULL, '2012-01-14 21:58:16', NULL)
|
391
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1[0m
|
392
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
393
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
394
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
395
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
396
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
397
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
398
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
399
|
+
[1m[36mCalendarRecurrence Load (0.2ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10[0m
|
400
|
+
[1m[35mCalendarEvent Load (0.4ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 10 LIMIT 1
|
401
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (10, 1, 14, 1, 6)[0m
|
402
|
+
[1m[35m (86.2ms)[0m COMMIT
|
403
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
404
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 17, 2, '2011-02-17', 4)
|
405
|
+
[1m[36m (60.4ms)[0m [1mCOMMIT[0m
|
406
|
+
[1m[35mCalendarDate Load (8.0ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 10
|
407
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
408
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
409
|
+
[1m[36m (85.9ms)[0m [1mCOMMIT[0m
|
410
|
+
[1m[35m (0.1ms)[0m BEGIN
|
411
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 18, 2, '2011-02-18', 5)[0m
|
412
|
+
[1m[35m (74.2ms)[0m COMMIT
|
413
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
414
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
415
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 1, 12, 'some event description', '2012-02-04 21:58:16', NULL, NULL, '2012-01-22 21:58:16', NULL)[0m
|
416
|
+
[1m[35mCalendarEventType Load (0.3ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 1 LIMIT 1
|
417
|
+
[1m[36mCalendarRecurrence Load (0.2ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 11[0m
|
418
|
+
[1m[35m (86.3ms)[0m COMMIT
|
419
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
420
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 19, 2, '2011-02-19', 6)
|
421
|
+
[1m[36m (81.3ms)[0m [1mCOMMIT[0m
|
422
|
+
[1m[35m (5.6ms)[0m SELECT COUNT(*) FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 11
|
423
|
+
[1m[36mCalendarDate Load (1.2ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 11 LIMIT 1[0m
|
424
|
+
[1m[35m (0.1ms)[0m BEGIN
|
425
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
426
|
+
[1m[35m (86.6ms)[0m COMMIT
|
427
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
428
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 20, 2, '2011-02-20', 0)
|
429
|
+
[1m[36m (75.0ms)[0m [1mCOMMIT[0m
|
430
|
+
[1m[35m (0.1ms)[0m BEGIN
|
431
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
432
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 1, 13, 'some event description', '2012-02-04 21:58:16', NULL, NULL, '2012-01-22 21:58:16', NULL)
|
433
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 1 LIMIT 1[0m
|
434
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 12
|
435
|
+
[1m[36m (85.6ms)[0m [1mCOMMIT[0m
|
436
|
+
[1m[35m (0.1ms)[0m BEGIN
|
437
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 21, 2, '2011-02-21', 1)[0m
|
438
|
+
[1m[35m (81.5ms)[0m COMMIT
|
439
|
+
[1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 12[0m
|
440
|
+
[1m[35m (0.1ms)[0m BEGIN
|
441
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
442
|
+
[1m[35m (86.5ms)[0m COMMIT
|
443
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
444
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 22, 3, '2011-02-22', 2)
|
445
|
+
[1m[36m (82.6ms)[0m [1mCOMMIT[0m
|
446
|
+
[1m[35m (0.1ms)[0m BEGIN
|
447
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
448
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 2, 14, 'some event description', '2012-02-04 21:58:16', NULL, NULL, '2012-01-22 21:58:16', NULL)
|
449
|
+
[1m[36mCalendarEventType Load (0.3ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 2 LIMIT 1[0m
|
450
|
+
[1m[35mCalendarRecurrence Load (0.2ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 13
|
451
|
+
[1m[36m (86.3ms)[0m [1mCOMMIT[0m
|
452
|
+
[1m[35m (0.1ms)[0m BEGIN
|
453
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 23, 3, '2011-02-23', 3)[0m
|
454
|
+
[1m[35m (81.5ms)[0m COMMIT
|
455
|
+
[1m[36mCalendarDate Load (6.6ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 13[0m
|
456
|
+
[1m[35m (5.2ms)[0m SELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 13
|
457
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
458
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
459
|
+
[1m[36m (86.4ms)[0m [1mCOMMIT[0m
|
460
|
+
[1m[35m (0.1ms)[0m BEGIN
|
461
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 24, 3, '2011-02-24', 4)[0m
|
462
|
+
[1m[35m (69.3ms)[0m COMMIT
|
463
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
464
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
465
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 2, 15, 'some event description', '2012-02-04 21:58:17', NULL, NULL, '2012-01-22 21:58:17', NULL)[0m
|
466
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 2 LIMIT 1
|
467
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 14[0m
|
468
|
+
[1m[35m (86.2ms)[0m COMMIT
|
469
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
470
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 25, 3, '2011-02-25', 5)
|
471
|
+
[1m[36m (81.8ms)[0m [1mCOMMIT[0m
|
472
|
+
[1m[35mCalendarDate Load (7.0ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 14
|
473
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
474
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
475
|
+
[1m[36m (97.6ms)[0m [1mCOMMIT[0m
|
476
|
+
[1m[35m (0.1ms)[0m BEGIN
|
477
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 26, 3, '2011-02-26', 6)[0m
|
478
|
+
[1m[35m (87.1ms)[0m COMMIT
|
479
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
480
|
+
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
481
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 2, 16, 'some event description', '2012-02-04 21:58:17', NULL, NULL, '2012-01-22 21:58:17', NULL)[0m
|
482
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 2 LIMIT 1
|
483
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 15[0m
|
484
|
+
[1m[35m (97.3ms)[0m COMMIT
|
485
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
486
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 27, 3, '2011-02-27', 0)
|
487
|
+
[1m[36m (102.6ms)[0m [1mCOMMIT[0m
|
488
|
+
[1m[35mCalendarDate Load (6.7ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 15
|
489
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 15[0m
|
490
|
+
[1m[35m (0.2ms)[0m BEGIN
|
491
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
492
|
+
[1m[35m (108.6ms)[0m COMMIT
|
493
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
494
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 28, 3, '2011-02-28', 1)
|
495
|
+
[1m[36m (95.8ms)[0m [1mCOMMIT[0m
|
496
|
+
[1m[35m (0.1ms)[0m BEGIN
|
497
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
498
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 2, 17, 'some event description', '2012-02-04 21:58:17', NULL, NULL, '2012-01-22 21:58:17', NULL)
|
499
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 2 LIMIT 1[0m
|
500
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 16
|
501
|
+
[1m[36m (108.6ms)[0m [1mCOMMIT[0m
|
502
|
+
[1m[35m (0.1ms)[0m BEGIN
|
503
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 1, 0, '2011-03-01', 2)[0m
|
504
|
+
[1m[35m (103.4ms)[0m COMMIT
|
505
|
+
[1m[36mCalendarDate Load (6.3ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 16[0m
|
506
|
+
[1m[35m (0.1ms)[0m BEGIN
|
507
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
508
|
+
[1m[35m (109.7ms)[0m COMMIT
|
509
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
510
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 2, 0, '2011-03-02', 3)
|
511
|
+
[1m[36m (87.2ms)[0m [1mCOMMIT[0m
|
512
|
+
[1m[35m (0.1ms)[0m BEGIN
|
513
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
514
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 4, 18, 'some event description', '2012-02-04 21:58:17', NULL, NULL, '2012-01-22 21:58:17', NULL)
|
515
|
+
[1m[36mCalendarEventType Load (0.5ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 4 LIMIT 1[0m
|
516
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 17
|
517
|
+
[1m[36mCalendarEvent Load (0.5ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 17 LIMIT 1[0m
|
518
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (17, NULL, NULL, NULL, 1)
|
519
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 17 LIMIT 1[0m
|
520
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (17, NULL, NULL, NULL, 3)
|
521
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 17 LIMIT 1[0m
|
522
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (17, NULL, NULL, NULL, 5)
|
523
|
+
[1m[36m (86.3ms)[0m [1mCOMMIT[0m
|
524
|
+
[1m[35m (0.1ms)[0m BEGIN
|
525
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 3, 0, '2011-03-03', 4)[0m
|
526
|
+
[1m[35m (69.8ms)[0m COMMIT
|
527
|
+
[1m[36mCalendarDate Load (7.4ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 17[0m
|
528
|
+
[1m[35m (0.1ms)[0m BEGIN
|
529
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
530
|
+
[1m[35m (86.6ms)[0m COMMIT
|
531
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
532
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 4, 0, '2011-03-04', 5)
|
533
|
+
[1m[36m (74.7ms)[0m [1mCOMMIT[0m
|
534
|
+
[1m[35m (0.1ms)[0m BEGIN
|
535
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
536
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 4, 19, 'some event description', '2012-02-04 21:58:17', NULL, NULL, '2012-01-22 21:58:17', NULL)
|
537
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 4 LIMIT 1[0m
|
538
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 18
|
539
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 18 LIMIT 1[0m
|
540
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (18, NULL, NULL, NULL, 1)
|
541
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 18 LIMIT 1[0m
|
542
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (18, NULL, NULL, NULL, 3)
|
543
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 18 LIMIT 1[0m
|
544
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (18, NULL, NULL, NULL, 5)
|
545
|
+
[1m[36m (86.1ms)[0m [1mCOMMIT[0m
|
546
|
+
[1m[35m (0.1ms)[0m BEGIN
|
547
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 5, 0, '2011-03-05', 6)[0m
|
548
|
+
[1m[35m (71.8ms)[0m COMMIT
|
549
|
+
[1m[36mCalendarDate Load (6.8ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 18[0m
|
550
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 18
|
551
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
552
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
553
|
+
[1m[36m (86.0ms)[0m [1mCOMMIT[0m
|
554
|
+
[1m[35m (0.1ms)[0m BEGIN
|
555
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 6, 0, '2011-03-06', 0)[0m
|
556
|
+
[1m[35m (73.4ms)[0m COMMIT
|
557
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
558
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
559
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 4, 20, 'some event description', '2012-02-04 21:58:18', NULL, NULL, '2012-01-22 21:58:18', NULL)[0m
|
560
|
+
[1m[35mCalendarEventType Load (0.4ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 4 LIMIT 1
|
561
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 19[0m
|
562
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 19 LIMIT 1
|
563
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (19, NULL, NULL, NULL, 1)[0m
|
564
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 19 LIMIT 1
|
565
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (19, NULL, NULL, NULL, 3)[0m
|
566
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 19 LIMIT 1
|
567
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (19, NULL, NULL, NULL, 5)[0m
|
568
|
+
[1m[35m (86.1ms)[0m COMMIT
|
569
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
570
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 7, 0, '2011-03-07', 1)
|
571
|
+
[1m[36m (71.4ms)[0m [1mCOMMIT[0m
|
572
|
+
[1m[35mCalendarDate Load (7.7ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 19
|
573
|
+
[1m[36m (6.1ms)[0m [1mSELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 19[0m
|
574
|
+
[1m[35m (0.1ms)[0m BEGIN
|
575
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
576
|
+
[1m[35m (86.7ms)[0m COMMIT
|
577
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
578
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 8, 1, '2011-03-08', 2)
|
579
|
+
[1m[36m (63.4ms)[0m [1mCOMMIT[0m
|
580
|
+
[1m[35m (0.1ms)[0m BEGIN
|
581
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
582
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 4, 21, 'some event description', '2012-02-04 21:58:18', NULL, NULL, '2012-01-22 21:58:18', NULL)
|
583
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 4 LIMIT 1[0m
|
584
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 20
|
585
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 20 LIMIT 1[0m
|
586
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (20, NULL, NULL, NULL, 1)
|
587
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 20 LIMIT 1[0m
|
588
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (20, NULL, NULL, NULL, 3)
|
589
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 20 LIMIT 1[0m
|
590
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (20, NULL, NULL, NULL, 5)
|
591
|
+
[1m[36m (86.2ms)[0m [1mCOMMIT[0m
|
592
|
+
[1m[35m (0.1ms)[0m BEGIN
|
593
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 9, 1, '2011-03-09', 3)[0m
|
594
|
+
[1m[35m (71.0ms)[0m COMMIT
|
595
|
+
[1m[36mCalendarDate Load (8.0ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 20[0m
|
596
|
+
[1m[35m (0.1ms)[0m BEGIN
|
597
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
598
|
+
[1m[35m (86.5ms)[0m COMMIT
|
599
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
600
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 10, 1, '2011-03-10', 4)
|
601
|
+
[1m[36m (74.3ms)[0m [1mCOMMIT[0m
|
602
|
+
[1m[35m (0.1ms)[0m BEGIN
|
603
|
+
[1m[36m (1.9ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))[0m
|
604
|
+
[1m[35mCalendarDate Load (2.0ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))
|
605
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 21, 2, '2011-12-21', 3)[0m
|
606
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 22, 3, '2011-12-22', 4)
|
607
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 23, 3, '2011-12-23', 5)[0m
|
608
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 24, 3, '2011-12-24', 6)
|
609
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 25, 3, '2011-12-25', 0)[0m
|
610
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 26, 3, '2011-12-26', 1)
|
611
|
+
[1m[36m (86.5ms)[0m [1mCOMMIT[0m
|
612
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 27, 3, '2011-12-27', 2)
|
613
|
+
[1m[36m (1.4ms)[0m [1mBEGIN[0m
|
614
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 28, 3, '2011-12-28', 3)
|
615
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 11, 1, '2011-03-11', 5)[0m
|
616
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 29, 4, '2011-12-29', 4)
|
617
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 30, 4, '2011-12-30', 5)[0m
|
618
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 31, 4, '2011-12-31', 6)
|
619
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 1, 0, '2012-01-01', 0)[0m
|
620
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 2, 0, '2012-01-02', 1)
|
621
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 3, 0, '2012-01-03', 2)[0m
|
622
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 4, 0, '2012-01-04', 3)
|
623
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 5, 0, '2012-01-05', 4)[0m
|
624
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 6, 0, '2012-01-06', 5)
|
625
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 7, 0, '2012-01-07', 6)[0m
|
626
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 8, 1, '2012-01-08', 0)
|
627
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 9, 1, '2012-01-09', 1)[0m
|
628
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 10, 1, '2012-01-10', 2)
|
629
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 11, 1, '2012-01-11', 3)[0m
|
630
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 12, 1, '2012-01-12', 4)
|
631
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 13, 1, '2012-01-13', 5)[0m
|
632
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 22, 3, '2012-06-22', 5)
|
633
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 23, 3, '2012-06-23', 6)[0m
|
634
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 24, 3, '2012-06-24', 0)
|
635
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 25, 3, '2012-06-25', 1)[0m
|
636
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 26, 3, '2012-06-26', 2)
|
637
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 27, 3, '2012-06-27', 3)[0m
|
638
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 28, 3, '2012-06-28', 4)
|
639
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 29, 4, '2012-06-29', 5)[0m
|
640
|
+
[1m[35m (39.6ms)[0m COMMIT
|
641
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 30, 4, '2012-06-30', 6)[0m
|
642
|
+
[1m[35m (1.5ms)[0m BEGIN
|
643
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 1, 0, '2012-07-01', 0)[0m
|
644
|
+
[1m[35mSQL (2.0ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 12, 1, '2011-03-12', 6)
|
645
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 2, 0, '2012-07-02', 1)[0m
|
646
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 3, 0, '2012-07-03', 2)
|
647
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 4, 0, '2012-07-04', 3)[0m
|
648
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 5, 0, '2012-07-05', 4)
|
649
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 6, 0, '2012-07-06', 5)[0m
|
650
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 7, 0, '2012-07-07', 6)
|
651
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 8, 1, '2012-07-08', 0)[0m
|
652
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 9, 1, '2012-07-09', 1)
|
653
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 10, 1, '2012-07-10', 2)[0m
|
654
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 11, 1, '2012-07-11', 3)
|
655
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 12, 1, '2012-07-12', 4)[0m
|
656
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 13, 1, '2012-07-13', 5)
|
657
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 14, 1, '2012-07-14', 6)[0m
|
658
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 15, 2, '2012-07-15', 0)
|
659
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 16, 2, '2012-07-16', 1)[0m
|
660
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 17, 2, '2012-07-17', 2)
|
661
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 18, 2, '2012-07-18', 3)[0m
|
662
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 19, 2, '2012-07-19', 4)
|
663
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 20, 2, '2012-07-20', 5)[0m
|
664
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 21, 2, '2012-07-21', 6)
|
665
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 22, 3, '2012-07-22', 0)[0m
|
666
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 23, 3, '2012-07-23', 1)
|
667
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 24, 3, '2012-07-24', 2)[0m
|
668
|
+
[1m[35m (38.7ms)[0m COMMIT
|
669
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
670
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 13, 1, '2011-03-13', 0)
|
671
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 25, 3, '2012-07-25', 3)[0m
|
672
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 26, 3, '2012-07-26', 4)
|
673
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 27, 3, '2012-07-27', 5)[0m
|
674
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 28, 3, '2012-07-28', 6)
|
675
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 29, 4, '2012-07-29', 0)[0m
|
676
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 30, 4, '2012-07-30', 1)
|
677
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 31, 4, '2012-07-31', 2)[0m
|
678
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 1, 0, '2012-08-01', 3)
|
679
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 2, 0, '2012-08-02', 4)[0m
|
680
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 3, 0, '2012-08-03', 5)
|
681
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 4, 0, '2012-08-04', 6)[0m
|
682
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 5, 0, '2012-08-05', 0)
|
683
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 6, 0, '2012-08-06', 1)[0m
|
684
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 7, 0, '2012-08-07', 2)
|
685
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 8, 1, '2012-08-08', 3)[0m
|
686
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 9, 1, '2012-08-09', 4)
|
687
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 10, 1, '2012-08-10', 5)[0m
|
688
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 11, 1, '2012-08-11', 6)
|
689
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 12, 1, '2012-08-12', 0)[0m
|
690
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 13, 1, '2012-08-13', 1)
|
691
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 14, 1, '2012-08-14', 2)[0m
|
692
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 15, 2, '2012-08-15', 3)
|
693
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 16, 2, '2012-08-16', 4)[0m
|
694
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 17, 2, '2012-08-17', 5)
|
695
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 18, 2, '2012-08-18', 6)[0m
|
696
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 19, 2, '2012-08-19', 0)
|
697
|
+
[1m[36m (42.7ms)[0m [1mCOMMIT[0m
|
698
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 20, 2, '2012-08-20', 1)
|
699
|
+
[1m[36m (1.5ms)[0m [1mBEGIN[0m
|
700
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 21, 2, '2012-08-21', 2)
|
701
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 14, 1, '2011-03-14', 1)[0m
|
702
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 22, 3, '2012-08-22', 3)
|
703
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 23, 3, '2012-08-23', 4)[0m
|
704
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 24, 3, '2012-08-24', 5)
|
705
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 25, 3, '2012-08-25', 6)[0m
|
706
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 26, 3, '2012-08-26', 0)
|
707
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 27, 3, '2012-08-27', 1)[0m
|
708
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 28, 3, '2012-08-28', 2)
|
709
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 29, 4, '2012-08-29', 3)[0m
|
710
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 30, 4, '2012-08-30', 4)
|
711
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 31, 4, '2012-08-31', 5)[0m
|
712
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 1, 0, '2012-09-01', 6)
|
713
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 2, 0, '2012-09-02', 0)[0m
|
714
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 3, 0, '2012-09-03', 1)
|
715
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 4, 0, '2012-09-04', 2)[0m
|
716
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 5, 0, '2012-09-05', 3)
|
717
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 6, 0, '2012-09-06', 4)[0m
|
718
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 7, 0, '2012-09-07', 5)
|
719
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 8, 1, '2012-09-08', 6)[0m
|
720
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 9, 1, '2012-09-09', 0)
|
721
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 10, 1, '2012-09-10', 1)[0m
|
722
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 11, 1, '2012-09-11', 2)
|
723
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 12, 1, '2012-09-12', 3)[0m
|
724
|
+
[1m[35m (61.0ms)[0m COMMIT
|
725
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
726
|
+
[1m[35mSQL (1.9ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 13, 1, '2012-09-13', 4)
|
727
|
+
[1m[36mSQL (2.1ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 15, 2, '2011-03-15', 2)[0m
|
728
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 14, 1, '2012-09-14', 5)
|
729
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 15, 2, '2012-09-15', 6)[0m
|
730
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 16, 2, '2012-09-16', 0)
|
731
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 17, 2, '2012-09-17', 1)[0m
|
732
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 18, 2, '2012-09-18', 2)
|
733
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 19, 2, '2012-09-19', 3)[0m
|
734
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 20, 2, '2012-09-20', 4)
|
735
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 21, 2, '2012-09-21', 5)[0m
|
736
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 22, 3, '2012-09-22', 6)
|
737
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 23, 3, '2012-09-23', 0)[0m
|
738
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 24, 3, '2012-09-24', 1)
|
739
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 25, 3, '2012-09-25', 2)[0m
|
740
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 26, 3, '2012-09-26', 3)
|
741
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 27, 3, '2012-09-27', 4)[0m
|
742
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 28, 3, '2012-09-28', 5)
|
743
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 29, 4, '2012-09-29', 6)[0m
|
744
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 30, 4, '2012-09-30', 0)
|
745
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 1, 0, '2012-10-01', 1)[0m
|
746
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 2, 0, '2012-10-02', 2)
|
747
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 3, 0, '2012-10-03', 3)[0m
|
748
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 4, 0, '2012-10-04', 4)
|
749
|
+
[1m[36m (40.5ms)[0m [1mCOMMIT[0m
|
750
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 5, 0, '2012-10-05', 5)
|
751
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
752
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 6, 0, '2012-10-06', 6)
|
753
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 16, 2, '2011-03-16', 3)[0m
|
754
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 7, 0, '2012-10-07', 0)
|
755
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 8, 1, '2012-10-08', 1)[0m
|
756
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 9, 1, '2012-10-09', 2)
|
757
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 10, 1, '2012-10-10', 3)[0m
|
758
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 11, 1, '2012-10-11', 4)
|
759
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 12, 1, '2012-10-12', 5)[0m
|
760
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 13, 1, '2012-10-13', 6)
|
761
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 14, 1, '2012-10-14', 0)[0m
|
762
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 15, 2, '2012-10-15', 1)
|
763
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 16, 2, '2012-10-16', 2)[0m
|
764
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 17, 2, '2012-10-17', 3)
|
765
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 18, 2, '2012-10-18', 4)[0m
|
766
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 19, 2, '2012-10-19', 5)
|
767
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 20, 2, '2012-10-20', 6)[0m
|
768
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 21, 2, '2012-10-21', 0)
|
769
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 22, 3, '2012-10-22', 1)[0m
|
770
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 23, 3, '2012-10-23', 2)
|
771
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 24, 3, '2012-10-24', 3)[0m
|
772
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 25, 3, '2012-10-25', 4)
|
773
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 26, 3, '2012-10-26', 5)[0m
|
774
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 27, 3, '2012-10-27', 6)
|
775
|
+
[1m[36m (36.5ms)[0m [1mCOMMIT[0m
|
776
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 28, 3, '2012-10-28', 0)
|
777
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
778
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 29, 4, '2012-10-29', 1)
|
779
|
+
[1m[36mSQL (2.1ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 17, 2, '2011-03-17', 4)[0m
|
780
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 30, 4, '2012-10-30', 2)
|
781
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 31, 4, '2012-10-31', 3)[0m
|
782
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 1, 0, '2012-11-01', 4)
|
783
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 2, 0, '2012-11-02', 5)[0m
|
784
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 3, 0, '2012-11-03', 6)
|
785
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 4, 0, '2012-11-04', 0)[0m
|
786
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 5, 0, '2012-11-05', 1)
|
787
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 6, 0, '2012-11-06', 2)[0m
|
788
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 7, 0, '2012-11-07', 3)
|
789
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 8, 1, '2012-11-08', 4)[0m
|
790
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 9, 1, '2012-11-09', 5)
|
791
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 10, 1, '2012-11-10', 6)[0m
|
792
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 11, 1, '2012-11-11', 0)
|
793
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 12, 1, '2012-11-12', 1)[0m
|
794
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 13, 1, '2012-11-13', 2)
|
795
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 14, 1, '2012-11-14', 3)[0m
|
796
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 15, 2, '2012-11-15', 4)
|
797
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 16, 2, '2012-11-16', 5)[0m
|
798
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 17, 2, '2012-11-17', 6)
|
799
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 18, 2, '2012-11-18', 0)[0m
|
800
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 19, 2, '2012-11-19', 1)
|
801
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 20, 2, '2012-11-20', 2)[0m
|
802
|
+
[1m[35m (37.5ms)[0m COMMIT
|
803
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 21, 2, '2012-11-21', 3)[0m
|
804
|
+
[1m[35m (0.3ms)[0m BEGIN
|
805
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 22, 3, '2012-11-22', 4)[0m
|
806
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 18, 2, '2011-03-18', 5)
|
807
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 23, 3, '2012-11-23', 5)[0m
|
808
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 24, 3, '2012-11-24', 6)
|
809
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 25, 3, '2012-11-25', 0)[0m
|
810
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 26, 3, '2012-11-26', 1)
|
811
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 27, 3, '2012-11-27', 2)[0m
|
812
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 28, 3, '2012-11-28', 3)
|
813
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 29, 4, '2012-11-29', 4)[0m
|
814
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 30, 4, '2012-11-30', 5)
|
815
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 1, 0, '2012-12-01', 6)[0m
|
816
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 2, 0, '2012-12-02', 0)
|
817
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 3, 0, '2012-12-03', 1)[0m
|
818
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 4, 0, '2012-12-04', 2)
|
819
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 5, 0, '2012-12-05', 3)[0m
|
820
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 6, 0, '2012-12-06', 4)
|
821
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 7, 0, '2012-12-07', 5)[0m
|
822
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 8, 1, '2012-12-08', 6)
|
823
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 9, 1, '2012-12-09', 0)[0m
|
824
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 10, 1, '2012-12-10', 1)
|
825
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 11, 1, '2012-12-11', 2)[0m
|
826
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 12, 1, '2012-12-12', 3)
|
827
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 13, 1, '2012-12-13', 4)[0m
|
828
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 14, 1, '2012-12-14', 5)
|
829
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 15, 2, '2012-12-15', 6)[0m
|
830
|
+
[1m[35m (40.5ms)[0m COMMIT
|
831
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 16, 2, '2012-12-16', 0)[0m
|
832
|
+
[1m[35m (1.7ms)[0m BEGIN
|
833
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 17, 2, '2012-12-17', 1)[0m
|
834
|
+
[1m[35mSQL (1.7ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 19, 2, '2011-03-19', 6)
|
835
|
+
[1m[36mSQL (2.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 18, 2, '2012-12-18', 2)[0m
|
836
|
+
[1m[35mSQL (12.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 19, 2, '2012-12-19', 3)
|
837
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 20, 2, '2012-12-20', 4)[0m
|
838
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 21, 2, '2012-12-21', 5)
|
839
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 22, 3, '2012-12-22', 6)[0m
|
840
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 23, 3, '2012-12-23', 0)
|
841
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 24, 3, '2012-12-24', 1)[0m
|
842
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 25, 3, '2012-12-25', 2)
|
843
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 26, 3, '2012-12-26', 3)[0m
|
844
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 27, 3, '2012-12-27', 4)
|
845
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 28, 3, '2012-12-28', 5)[0m
|
846
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 29, 4, '2012-12-29', 6)
|
847
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 30, 4, '2012-12-30', 0)[0m
|
848
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 31, 4, '2012-12-31', 1)
|
849
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 1, 0, '2013-01-01', 2)[0m
|
850
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 2, 0, '2013-01-02', 3)
|
851
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 3, 0, '2013-01-03', 4)[0m
|
852
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 4, 0, '2013-01-04', 5)
|
853
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 5, 0, '2013-01-05', 6)[0m
|
854
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 6, 0, '2013-01-06', 0)
|
855
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 7, 0, '2013-01-07', 1)[0m
|
856
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 8, 1, '2013-01-08', 2)
|
857
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 9, 1, '2013-01-09', 3)[0m
|
858
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 10, 1, '2013-01-10', 4)
|
859
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 11, 1, '2013-01-11', 5)[0m
|
860
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 12, 1, '2013-01-12', 6)
|
861
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 13, 1, '2013-01-13', 0)[0m
|
862
|
+
[1m[35m (57.7ms)[0m COMMIT
|
863
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 14, 1, '2013-01-14', 1)[0m
|
864
|
+
[1m[35m (1.4ms)[0m BEGIN
|
865
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 15, 2, '2013-01-15', 2)[0m
|
866
|
+
[1m[35mSQL (3.0ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 20, 2, '2011-03-20', 0)
|
867
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 16, 2, '2013-01-16', 3)[0m
|
868
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 17, 2, '2013-01-17', 4)
|
869
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 18, 2, '2013-01-18', 5)[0m
|
870
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 19, 2, '2013-01-19', 6)
|
871
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 20, 2, '2013-01-20', 0)[0m
|
872
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 21, 2, '2013-01-21', 1)
|
873
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 6, 22, 'some event description', '2013-01-21 21:58:18', NULL, NULL, '2011-12-21 21:58:18', NULL)[0m
|
874
|
+
[1m[35mCalendarEventType Load (0.3ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1
|
875
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
876
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
877
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
878
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
879
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
880
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
881
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
882
|
+
[1m[35mCalendarRecurrence Load (0.2ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21
|
883
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 21 LIMIT 1[0m
|
884
|
+
[1m[35m (38.1ms)[0m COMMIT
|
885
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
886
|
+
[1m[35mSQL (2.7ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (21, 12, 21, 2, 3)
|
887
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 21, 2, '2011-03-21', 1)[0m
|
888
|
+
[1m[35m (40.9ms)[0m COMMIT
|
889
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21[0m
|
890
|
+
[1m[35m (0.1ms)[0m BEGIN
|
891
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
892
|
+
[1m[35m (96.2ms)[0m COMMIT
|
893
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
894
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 22, 3, '2011-03-22', 2)
|
895
|
+
[1m[36m (86.3ms)[0m [1mCOMMIT[0m
|
896
|
+
[1m[35m (0.1ms)[0m BEGIN
|
897
|
+
[1m[36m (3.2ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))[0m
|
898
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 6, 23, 'some event description', '2013-01-21 21:58:19', NULL, NULL, '2011-12-21 21:58:19', NULL)
|
899
|
+
[1m[36mCalendarEventType Load (0.2ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1[0m
|
900
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
901
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
902
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
903
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
904
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
905
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
906
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
907
|
+
[1m[36mCalendarRecurrence Load (0.2ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22[0m
|
908
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 22 LIMIT 1
|
909
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (22, 12, 21, 2, 3)[0m
|
910
|
+
[1m[35m (106.7ms)[0m COMMIT
|
911
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
912
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 23, 3, '2011-03-23', 3)
|
913
|
+
[1m[36m (74.7ms)[0m [1mCOMMIT[0m
|
914
|
+
[1m[35m (38.7ms)[0m SELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 22
|
915
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
916
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
917
|
+
[1m[36m (118.4ms)[0m [1mCOMMIT[0m
|
918
|
+
[1m[35m (0.1ms)[0m BEGIN
|
919
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 24, 3, '2011-03-24', 4)[0m
|
920
|
+
[1m[35m (99.6ms)[0m COMMIT
|
921
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
922
|
+
[1m[35m (4.6ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))
|
923
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 6, 24, 'some event description', '2013-01-21 21:58:19', NULL, NULL, '2011-12-21 21:58:19', NULL)[0m
|
924
|
+
[1m[35mCalendarEventType Load (0.2ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1
|
925
|
+
[1m[36mCalendarRecurrence Load (0.6ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
926
|
+
[1m[35mCalendarRecurrence Load (0.9ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
927
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
928
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
929
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
930
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
931
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
932
|
+
[1m[35mCalendarRecurrence Load (0.2ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23
|
933
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 23 LIMIT 1[0m
|
934
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (23, 12, 21, 2, 3)
|
935
|
+
[1m[36m (130.6ms)[0m [1mCOMMIT[0m
|
936
|
+
[1m[35m (0.1ms)[0m BEGIN
|
937
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 25, 3, '2011-03-25', 5)[0m
|
938
|
+
[1m[35m (65.9ms)[0m COMMIT
|
939
|
+
[1m[36mCalendarDate Load (27.0ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 23[0m
|
940
|
+
[1m[35m (0.1ms)[0m BEGIN
|
941
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
942
|
+
[1m[35m (109.3ms)[0m COMMIT
|
943
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
944
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 26, 3, '2011-03-26', 6)
|
945
|
+
[1m[36m (67.6ms)[0m [1mCOMMIT[0m
|
946
|
+
[1m[35m (0.1ms)[0m BEGIN
|
947
|
+
[1m[36m (2.6ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))[0m
|
948
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 6, 25, 'some event description', '2013-01-21 21:58:19', NULL, NULL, '2011-12-21 21:58:19', NULL)
|
949
|
+
[1m[36mCalendarEventType Load (0.2ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1[0m
|
950
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
951
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
952
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
953
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
954
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
955
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
956
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
957
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24[0m
|
958
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 24 LIMIT 1
|
959
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (24, 12, 21, 2, 3)[0m
|
960
|
+
[1m[35m (85.4ms)[0m COMMIT
|
961
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
962
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 27, 3, '2011-03-27', 0)
|
963
|
+
[1m[36m (53.5ms)[0m [1mCOMMIT[0m
|
964
|
+
[1m[35mCalendarDate Load (27.9ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 24
|
965
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
966
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
967
|
+
[1m[36m (85.8ms)[0m [1mCOMMIT[0m
|
968
|
+
[1m[35m (0.2ms)[0m BEGIN
|
969
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 28, 3, '2011-03-28', 1)[0m
|
970
|
+
[1m[35m (54.5ms)[0m COMMIT
|
971
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
972
|
+
[1m[35m (2.9ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))
|
973
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 6, 26, 'some event description', '2013-01-21 21:58:19', NULL, NULL, '2011-12-21 21:58:19', NULL)[0m
|
974
|
+
[1m[35mCalendarEventType Load (0.2ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1
|
975
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
976
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
977
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
978
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
979
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
980
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
981
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
982
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25
|
983
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 25 LIMIT 1[0m
|
984
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (25, 12, 21, 2, 3)
|
985
|
+
[1m[36m (85.1ms)[0m [1mCOMMIT[0m
|
986
|
+
[1m[35m (0.1ms)[0m BEGIN
|
987
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 29, 4, '2011-03-29', 2)[0m
|
988
|
+
[1m[35m (53.4ms)[0m COMMIT
|
989
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25[0m
|
990
|
+
[1m[35m (0.1ms)[0m BEGIN
|
991
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
992
|
+
[1m[35m (85.6ms)[0m COMMIT
|
993
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
994
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 30, 4, '2011-03-30', 3)
|
995
|
+
[1m[36m (83.0ms)[0m [1mCOMMIT[0m
|
996
|
+
[1m[35m (0.1ms)[0m BEGIN
|
997
|
+
[1m[36m (2.8ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))[0m
|
998
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 6, 27, 'some event description', '2013-01-21 21:58:19', NULL, NULL, '2011-12-21 21:58:19', NULL)
|
999
|
+
[1m[36mCalendarEventType Load (0.2ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1[0m
|
1000
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
1001
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
1002
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
1003
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
1004
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
1005
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
1006
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
1007
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26[0m
|
1008
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 26 LIMIT 1
|
1009
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (26, 12, 21, 2, 3)[0m
|
1010
|
+
[1m[35m (85.6ms)[0m COMMIT
|
1011
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1012
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 31, 4, '2011-03-31', 4)
|
1013
|
+
[1m[36m (52.8ms)[0m [1mCOMMIT[0m
|
1014
|
+
[1m[35m (28.6ms)[0m SELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 26
|
1015
|
+
[1m[36m (98.8ms)[0m [1mCOMMIT[0m
|
1016
|
+
[1m[35m (1.0ms)[0m BEGIN
|
1017
|
+
[1m[36m (1.6ms)[0m [1mBEGIN[0m
|
1018
|
+
[1m[35mSQL (1.7ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
1019
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 1, 0, '2011-04-01', 5)[0m
|
1020
|
+
[1m[35m (38.5ms)[0m COMMIT
|
1021
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1022
|
+
[1m[35m (2.7ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))
|
1023
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 6, 28, 'some event description', '2013-01-21 21:58:20', NULL, NULL, '2011-12-21 21:58:20', NULL)[0m
|
1024
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1
|
1025
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
1026
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
1027
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
1028
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
1029
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
1030
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
1031
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
1032
|
+
[1m[35mCalendarRecurrence Load (0.2ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27
|
1033
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 27 LIMIT 1[0m
|
1034
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (27, 12, 21, 2, 3)
|
1035
|
+
[1m[36m (82.5ms)[0m [1mCOMMIT[0m
|
1036
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1037
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 2, 0, '2011-04-02', 6)[0m
|
1038
|
+
[1m[35m (52.1ms)[0m COMMIT
|
1039
|
+
[1m[36mCalendarDate Load (29.0ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 27[0m
|
1040
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1041
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1042
|
+
[1m[35m (86.0ms)[0m COMMIT
|
1043
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1044
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 3, 0, '2011-04-03', 0)
|
1045
|
+
[1m[36m (53.5ms)[0m [1mCOMMIT[0m
|
1046
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1047
|
+
[1m[36m (2.8ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))[0m
|
1048
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 6, 29, 'some event description', '2013-01-21 21:58:20', NULL, NULL, '2011-12-21 21:58:20', NULL)
|
1049
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1[0m
|
1050
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
1051
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
1052
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
1053
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
1054
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
1055
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
1056
|
+
[1m[35mCalendarRecurrence Load (0.5ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
1057
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28[0m
|
1058
|
+
[1m[35mCalendarEvent Load (0.4ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 28 LIMIT 1
|
1059
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (28, 12, 21, 2, 3)[0m
|
1060
|
+
[1m[35m (85.2ms)[0m COMMIT
|
1061
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1062
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 4, 0, '2011-04-04', 1)
|
1063
|
+
[1m[36m (52.6ms)[0m [1mCOMMIT[0m
|
1064
|
+
[1m[35mCalendarDate Load (30.3ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 28
|
1065
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1066
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
1067
|
+
[1m[36m (86.1ms)[0m [1mCOMMIT[0m
|
1068
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1069
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 5, 0, '2011-04-05', 2)[0m
|
1070
|
+
[1m[35m (51.4ms)[0m COMMIT
|
1071
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1072
|
+
[1m[35m (3.4ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))
|
1073
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 6, 30, 'some event description', '2013-01-21 21:58:20', NULL, NULL, '2011-12-21 21:58:20', NULL)[0m
|
1074
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1
|
1075
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
1076
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
1077
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
1078
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
1079
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
1080
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
1081
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
1082
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29
|
1083
|
+
[1m[36mCalendarEvent Load (0.4ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 29 LIMIT 1[0m
|
1084
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (29, 12, 21, 2, 3)
|
1085
|
+
[1m[36m (85.2ms)[0m [1mCOMMIT[0m
|
1086
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1087
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 6, 0, '2011-04-06', 3)[0m
|
1088
|
+
[1m[35m (53.1ms)[0m COMMIT
|
1089
|
+
[1m[36mCalendarDate Load (30.3ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 29[0m
|
1090
|
+
[1m[35m (76.6ms)[0m COMMIT
|
1091
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1092
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1093
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1094
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1095
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1096
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1097
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1098
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1099
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1100
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1101
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1102
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1103
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1104
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1105
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1106
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1107
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1108
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1109
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1110
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1111
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1112
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1113
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1114
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1115
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1116
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1117
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1118
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1119
|
+
Mysql2::Error: Table 'schedulefu_test.calendar_events' doesn't exist: SHOW FULL FIELDS FROM `calendar_events`
|
1120
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1121
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
1122
|
+
[1m[36m (53.3ms)[0m [1mCOMMIT[0m
|
1123
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1124
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
1125
|
+
[1m[35mCalendarDate Load (0.4ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
1126
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 22, 3, '2012-01-22', 0)[0m
|
1127
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 23, 3, '2012-01-23', 1)
|
1128
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 24, 3, '2012-01-24', 2)[0m
|
1129
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 25, 3, '2012-01-25', 3)
|
1130
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 26, 3, '2012-01-26', 4)[0m
|
1131
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 27, 3, '2012-01-27', 5)
|
1132
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 28, 3, '2012-01-28', 6)[0m
|
1133
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 29, 4, '2012-01-29', 0)
|
1134
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 30, 4, '2012-01-30', 1)[0m
|
1135
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 31, 4, '2012-01-31', 2)
|
1136
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 1, 0, '2012-02-01', 3)[0m
|
1137
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 2, 0, '2012-02-02', 4)
|
1138
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 3, 0, '2012-02-03', 5)[0m
|
1139
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 4, 0, '2012-02-04', 6)
|
1140
|
+
[1m[36mSQL (1.9ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 3, 2, 'some event description', '2012-02-04 22:01:43', NULL, NULL, '2012-01-22 22:01:43', NULL)[0m
|
1141
|
+
[1m[35mCalendarEventType Load (0.5ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 3 LIMIT 1
|
1142
|
+
[1m[36mCalendarDate Load (54.2ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` WHERE (value IN ('2011-01-22','2011-01-23','2011-01-24','2011-01-25','2011-01-26','2011-01-27','2011-01-28','2011-01-29','2011-01-30','2011-01-31','2011-02-01','2011-02-02','2011-02-03','2011-02-04','2011-02-05','2011-02-06','2011-02-07','2011-02-08','2011-02-09','2011-02-10','2011-02-11','2011-02-12','2011-02-13','2011-02-14','2011-02-15','2011-02-16','2011-02-17','2011-02-18','2011-02-19','2011-02-20','2011-02-21','2011-02-22','2011-02-23','2011-02-24','2011-02-25','2011-02-26','2011-02-27','2011-02-28','2011-03-01','2011-03-02','2011-03-03','2011-03-04','2011-03-05','2011-03-06','2011-03-07','2011-03-08','2011-03-09','2011-03-10','2011-03-11','2011-03-12','2011-03-13','2011-03-14','2011-03-15','2011-03-16','2011-03-17','2011-03-18','2011-03-19','2011-03-20','2011-03-21','2011-03-22','2011-03-23','2011-03-24','2011-03-25','2011-03-26','2011-03-27','2011-03-28','2011-03-29','2011-03-30','2011-03-31','2011-04-01','2011-04-02','2011-04-03','2011-04-04','2011-04-05','2011-04-06','2011-04-07','2011-04-08','2011-04-09','2011-04-10','2011-04-11','2011-04-12','2011-04-13','2011-04-14','2011-04-15','2011-04-16','2011-04-17','2011-04-18','2011-04-19','2011-04-20','2011-04-21','2011-04-22','2011-04-23','2011-04-24','2011-04-25','2011-04-26','2011-04-27','2011-04-28','2011-04-29','2011-04-30','2011-05-01','2011-05-02','2011-05-03','2011-05-04','2011-05-05','2011-05-06','2011-05-07','2011-05-08','2011-05-09','2011-05-10','2011-05-11','2011-05-12','2011-05-13','2011-05-14','2011-05-15','2011-05-16','2011-05-17','2011-05-18','2011-05-19','2011-05-20','2011-05-21','2011-05-22','2011-05-23','2011-05-24','2011-05-25','2011-05-26','2011-05-27','2011-05-28','2011-05-29','2011-05-30','2011-05-31','2011-06-01','2011-06-02','2011-06-03','2011-06-04','2011-06-05','2011-06-06','2011-06-07','2011-06-08','2011-06-09','2011-06-10','2011-06-11','2011-06-12','2011-06-13','2011-06-14','2011-06-15','2011-06-16','2011-06-17','2011-06-18','2011-06-19','2011-06-20','2011-06-21','2011-06-22','2011-06-23','2011-06-24','2011-06-25','2011-06-26','2011-06-27','2011-06-28','2011-06-29','2011-06-30','2011-07-01','2011-07-02','2011-07-03','2011-07-04','2011-07-05','2011-07-06','2011-07-07','2011-07-08','2011-07-09','2011-07-10','2011-07-11','2011-07-12','2011-07-13','2011-07-14','2011-07-15','2011-07-16','2011-07-17','2011-07-18','2011-07-19','2011-07-20','2011-07-21','2011-07-22','2011-07-23','2011-07-24','2011-07-25','2011-07-26','2011-07-27','2011-07-28','2011-07-29','2011-07-30','2011-07-31','2011-08-01','2011-08-02','2011-08-03','2011-08-04','2011-08-05','2011-08-06','2011-08-07','2011-08-08','2011-08-09','2011-08-10','2011-08-11','2011-08-12','2011-08-13','2011-08-14','2011-08-15','2011-08-16','2011-08-17','2011-08-18','2011-08-19','2011-08-20','2011-08-21','2011-08-22','2011-08-23','2011-08-24','2011-08-25','2011-08-26','2011-08-27','2011-08-28','2011-08-29','2011-08-30','2011-08-31','2011-09-01','2011-09-02','2011-09-03','2011-09-04','2011-09-05','2011-09-06','2011-09-07','2011-09-08','2011-09-09','2011-09-10','2011-09-11','2011-09-12','2011-09-13','2011-09-14','2011-09-15','2011-09-16','2011-09-17','2011-09-18','2011-09-19','2011-09-20','2011-09-21','2011-09-22','2011-09-23','2011-09-24','2011-09-25','2011-09-26','2011-09-27','2011-09-28','2011-09-29','2011-09-30','2011-10-01','2011-10-02','2011-10-03','2011-10-04','2011-10-05','2011-10-06','2011-10-07','2011-10-08','2011-10-09','2011-10-10','2011-10-11','2011-10-12','2011-10-13','2011-10-14','2011-10-15','2011-10-16','2011-10-17','2011-10-18','2011-10-19','2011-10-20','2011-10-21','2011-10-22','2011-10-23','2011-10-24','2011-10-25','2011-10-26','2011-10-27','2011-10-28','2011-10-29','2011-10-30','2011-10-31','2011-11-01','2011-11-02','2011-11-03','2011-11-04','2011-11-05','2011-11-06','2011-11-07','2011-11-08','2011-11-09','2011-11-10','2011-11-11','2011-11-12','2011-11-13','2011-11-14','2011-11-15','2011-11-16','2011-11-17','2011-11-18','2011-11-19','2011-11-20','2011-11-21','2011-11-22','2011-11-23','2011-11-24','2011-11-25','2011-11-26','2011-11-27','2011-11-28','2011-11-29','2011-11-30','2011-12-01','2011-12-02','2011-12-03','2011-12-04','2011-12-05','2011-12-06','2011-12-07','2011-12-08','2011-12-09','2011-12-10','2011-12-11','2011-12-12','2011-12-13','2011-12-14','2011-12-15','2011-12-16','2011-12-17','2011-12-18','2011-12-19','2011-12-20','2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21','2013-01-22','2013-01-23','2013-01-24','2013-01-25','2013-01-26','2013-01-27','2013-01-28','2013-01-29','2013-01-30','2013-01-31','2013-02-01','2013-02-02','2013-02-03','2013-02-04'))[0m
|
1143
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1144
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 22, 3, '2011-01-22', 6)[0m
|
1145
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 1
|
1146
|
+
[1m[36m (58.6ms)[0m [1mCOMMIT[0m
|
1147
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1148
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 23, 3, '2011-01-23', 0)[0m
|
1149
|
+
[1m[35m (101.3ms)[0m COMMIT
|
1150
|
+
[1m[36m (89.2ms)[0m [1mCOMMIT[0m
|
1151
|
+
[1m[35m (2.4ms)[0m BEGIN
|
1152
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 24, 3, '2011-01-24', 1)[0m
|
1153
|
+
[1m[35mCalendarDate Load (1.4ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 1
|
1154
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1155
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
1156
|
+
[1m[36m (46.4ms)[0m [1mCOMMIT[0m
|
1157
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1158
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 25, 3, '2011-01-25', 2)[0m
|
1159
|
+
[1m[35m (81.2ms)[0m COMMIT
|
1160
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1161
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
1162
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 3, 3, 'some event description', '2012-02-04 22:01:43', NULL, NULL, '2012-01-22 22:01:43', NULL)[0m
|
1163
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 3 LIMIT 1
|
1164
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 2[0m
|
1165
|
+
[1m[35m (86.6ms)[0m COMMIT
|
1166
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1167
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 26, 3, '2011-01-26', 3)
|
1168
|
+
[1m[36m (80.7ms)[0m [1mCOMMIT[0m
|
1169
|
+
[1m[35m (1.3ms)[0m SELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 2
|
1170
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1171
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
1172
|
+
[1m[36m (86.4ms)[0m [1mCOMMIT[0m
|
1173
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1174
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 27, 3, '2011-01-27', 4)[0m
|
1175
|
+
[1m[35m (80.8ms)[0m COMMIT
|
1176
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1177
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
1178
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 3, 4, 'some event description', '2012-02-04 22:01:44', NULL, NULL, '2012-01-22 22:01:44', NULL)[0m
|
1179
|
+
[1m[35mCalendarEventType Load (0.2ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 3 LIMIT 1
|
1180
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 3[0m
|
1181
|
+
[1m[35m (86.5ms)[0m COMMIT
|
1182
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1183
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 28, 3, '2011-01-28', 5)
|
1184
|
+
[1m[36m (91.9ms)[0m [1mCOMMIT[0m
|
1185
|
+
[1m[35m (0.9ms)[0m SELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 3
|
1186
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1187
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
1188
|
+
[1m[36m (108.8ms)[0m [1mCOMMIT[0m
|
1189
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1190
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 29, 4, '2011-01-29', 6)[0m
|
1191
|
+
[1m[35m (102.1ms)[0m COMMIT
|
1192
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1193
|
+
[1m[35m (1.3ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))
|
1194
|
+
[1m[36mCalendarDate Load (1.7ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))[0m
|
1195
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 14, 1, '2012-01-14', 6)
|
1196
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 15, 2, '2012-01-15', 0)[0m
|
1197
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 16, 2, '2012-01-16', 1)
|
1198
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 17, 2, '2012-01-17', 2)[0m
|
1199
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 18, 2, '2012-01-18', 3)
|
1200
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 19, 2, '2012-01-19', 4)[0m
|
1201
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 20, 2, '2012-01-20', 5)
|
1202
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 21, 2, '2012-01-21', 6)[0m
|
1203
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 5, 0, '2012-02-05', 0)
|
1204
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 6, 0, '2012-02-06', 1)[0m
|
1205
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 7, 0, '2012-02-07', 2)
|
1206
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 8, 1, '2012-02-08', 3)[0m
|
1207
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 9, 1, '2012-02-09', 4)
|
1208
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 10, 1, '2012-02-10', 5)[0m
|
1209
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 11, 1, '2012-02-11', 6)
|
1210
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 12, 1, '2012-02-12', 0)[0m
|
1211
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 13, 1, '2012-02-13', 1)
|
1212
|
+
[1m[36m (118.2ms)[0m [1mCOMMIT[0m
|
1213
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1214
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 30, 4, '2011-01-30', 0)[0m
|
1215
|
+
[1m[35mSQL (4.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 14, 1, '2012-02-14', 2)
|
1216
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 15, 2, '2012-02-15', 3)[0m
|
1217
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 16, 2, '2012-02-16', 4)
|
1218
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 17, 2, '2012-02-17', 5)[0m
|
1219
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 18, 2, '2012-02-18', 6)
|
1220
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 19, 2, '2012-02-19', 0)[0m
|
1221
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 20, 2, '2012-02-20', 1)
|
1222
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 21, 2, '2012-02-21', 2)[0m
|
1223
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 22, 3, '2012-02-22', 3)
|
1224
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 23, 3, '2012-02-23', 4)[0m
|
1225
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 24, 3, '2012-02-24', 5)
|
1226
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 25, 3, '2012-02-25', 6)[0m
|
1227
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 26, 3, '2012-02-26', 0)
|
1228
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 27, 3, '2012-02-27', 1)[0m
|
1229
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 28, 3, '2012-02-28', 2)
|
1230
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 29, 4, '2012-02-29', 3)[0m
|
1231
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 1, 0, '2012-03-01', 4)
|
1232
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 2, 0, '2012-03-02', 5)[0m
|
1233
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 3, 0, '2012-03-03', 6)
|
1234
|
+
[1m[36m (52.3ms)[0m [1mCOMMIT[0m
|
1235
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1236
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 1, 31, 4, '2011-01-31', 1)[0m
|
1237
|
+
[1m[35mSQL (4.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 4, 0, '2012-03-04', 0)
|
1238
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 5, 0, '2012-03-05', 1)[0m
|
1239
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 6, 0, '2012-03-06', 2)
|
1240
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 7, 0, '2012-03-07', 3)[0m
|
1241
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 8, 1, '2012-03-08', 4)
|
1242
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 9, 1, '2012-03-09', 5)[0m
|
1243
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 10, 1, '2012-03-10', 6)
|
1244
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 11, 1, '2012-03-11', 0)[0m
|
1245
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 12, 1, '2012-03-12', 1)
|
1246
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 13, 1, '2012-03-13', 2)[0m
|
1247
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 14, 1, '2012-03-14', 3)
|
1248
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 15, 2, '2012-03-15', 4)[0m
|
1249
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 16, 2, '2012-03-16', 5)
|
1250
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 17, 2, '2012-03-17', 6)[0m
|
1251
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 18, 2, '2012-03-18', 0)
|
1252
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 19, 2, '2012-03-19', 1)[0m
|
1253
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 20, 2, '2012-03-20', 2)
|
1254
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 21, 2, '2012-03-21', 3)[0m
|
1255
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 22, 3, '2012-03-22', 4)
|
1256
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 23, 3, '2012-03-23', 5)[0m
|
1257
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 24, 3, '2012-03-24', 6)
|
1258
|
+
[1m[36mSQL (19.8ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 25, 3, '2012-03-25', 0)[0m
|
1259
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 26, 3, '2012-03-26', 1)
|
1260
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 27, 3, '2012-03-27', 2)[0m
|
1261
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 28, 3, '2012-03-28', 3)
|
1262
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 29, 4, '2012-03-29', 4)[0m
|
1263
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 30, 4, '2012-03-30', 5)
|
1264
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 31, 4, '2012-03-31', 6)[0m
|
1265
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 1, 0, '2012-04-01', 0)
|
1266
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 2, 0, '2012-04-02', 1)[0m
|
1267
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 3, 0, '2012-04-03', 2)
|
1268
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 4, 0, '2012-04-04', 3)[0m
|
1269
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 5, 0, '2012-04-05', 4)
|
1270
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 6, 0, '2012-04-06', 5)[0m
|
1271
|
+
[1m[35m (109.9ms)[0m COMMIT
|
1272
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1273
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 1, 0, '2011-02-01', 2)
|
1274
|
+
[1m[36mSQL (3.8ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 7, 0, '2012-04-07', 6)[0m
|
1275
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 8, 1, '2012-04-08', 0)
|
1276
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 9, 1, '2012-04-09', 1)[0m
|
1277
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 10, 1, '2012-04-10', 2)
|
1278
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 11, 1, '2012-04-11', 3)[0m
|
1279
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 12, 1, '2012-04-12', 4)
|
1280
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 13, 1, '2012-04-13', 5)[0m
|
1281
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 14, 1, '2012-04-14', 6)
|
1282
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 15, 2, '2012-04-15', 0)[0m
|
1283
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 16, 2, '2012-04-16', 1)
|
1284
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 17, 2, '2012-04-17', 2)[0m
|
1285
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 18, 2, '2012-04-18', 3)
|
1286
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 19, 2, '2012-04-19', 4)[0m
|
1287
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 20, 2, '2012-04-20', 5)
|
1288
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 21, 2, '2012-04-21', 6)[0m
|
1289
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 22, 3, '2012-04-22', 0)
|
1290
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 23, 3, '2012-04-23', 1)[0m
|
1291
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 24, 3, '2012-04-24', 2)
|
1292
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 25, 3, '2012-04-25', 3)[0m
|
1293
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 26, 3, '2012-04-26', 4)
|
1294
|
+
[1m[36m (51.9ms)[0m [1mCOMMIT[0m
|
1295
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1296
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 2, 0, '2011-02-02', 3)[0m
|
1297
|
+
[1m[35mSQL (3.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 27, 3, '2012-04-27', 5)
|
1298
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 28, 3, '2012-04-28', 6)[0m
|
1299
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 29, 4, '2012-04-29', 0)
|
1300
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 4, 30, 4, '2012-04-30', 1)[0m
|
1301
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 1, 0, '2012-05-01', 2)
|
1302
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 2, 0, '2012-05-02', 3)[0m
|
1303
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 3, 0, '2012-05-03', 4)
|
1304
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 4, 0, '2012-05-04', 5)[0m
|
1305
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 5, 0, '2012-05-05', 6)
|
1306
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 6, 0, '2012-05-06', 0)[0m
|
1307
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 7, 0, '2012-05-07', 1)
|
1308
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 8, 1, '2012-05-08', 2)[0m
|
1309
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 9, 1, '2012-05-09', 3)
|
1310
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 10, 1, '2012-05-10', 4)[0m
|
1311
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 11, 1, '2012-05-11', 5)
|
1312
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 12, 1, '2012-05-12', 6)[0m
|
1313
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 13, 1, '2012-05-13', 0)
|
1314
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 14, 1, '2012-05-14', 1)[0m
|
1315
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 15, 2, '2012-05-15', 2)
|
1316
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 16, 2, '2012-05-16', 3)[0m
|
1317
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 17, 2, '2012-05-17', 4)
|
1318
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 18, 2, '2012-05-18', 5)[0m
|
1319
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 19, 2, '2012-05-19', 6)
|
1320
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 20, 2, '2012-05-20', 0)[0m
|
1321
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 21, 2, '2012-05-21', 1)
|
1322
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 22, 3, '2012-05-22', 2)[0m
|
1323
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 23, 3, '2012-05-23', 3)
|
1324
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 5, 24, 3, '2012-05-24', 4)[0m
|
1325
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 25, 3, '2012-05-25', 5)
|
1326
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 26, 3, '2012-05-26', 6)[0m
|
1327
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 27, 3, '2012-05-27', 0)
|
1328
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 28, 3, '2012-05-28', 1)[0m
|
1329
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 29, 4, '2012-05-29', 2)
|
1330
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 30, 4, '2012-05-30', 3)[0m
|
1331
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 5, 31, 4, '2012-05-31', 4)
|
1332
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 1, 0, '2012-06-01', 5)[0m
|
1333
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 2, 0, '2012-06-02', 6)
|
1334
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 3, 0, '2012-06-03', 0)[0m
|
1335
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 4, 0, '2012-06-04', 1)
|
1336
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 5, 0, '2012-06-05', 2)[0m
|
1337
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 6, 0, '2012-06-06', 3)
|
1338
|
+
[1m[36m (74.3ms)[0m [1mCOMMIT[0m
|
1339
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1340
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 7, 0, '2012-06-07', 4)
|
1341
|
+
[1m[35mSQL (2.0ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 3, 0, '2011-02-03', 4)
|
1342
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 8, 1, '2012-06-08', 5)[0m
|
1343
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 9, 1, '2012-06-09', 6)
|
1344
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 10, 1, '2012-06-10', 0)[0m
|
1345
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 11, 1, '2012-06-11', 1)
|
1346
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 12, 1, '2012-06-12', 2)[0m
|
1347
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 13, 1, '2012-06-13', 3)
|
1348
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 14, 1, '2012-06-14', 4)[0m
|
1349
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 15, 2, '2012-06-15', 5)
|
1350
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 16, 2, '2012-06-16', 6)[0m
|
1351
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 17, 2, '2012-06-17', 0)
|
1352
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 18, 2, '2012-06-18', 1)[0m
|
1353
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 19, 2, '2012-06-19', 2)
|
1354
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 20, 2, '2012-06-20', 3)[0m
|
1355
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 21, 2, '2012-06-21', 4)
|
1356
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 5, 5, 'some event description', '2012-06-21 22:01:44', NULL, NULL, '2012-01-14 22:01:44', NULL)[0m
|
1357
|
+
[1m[35mCalendarEventType Load (0.4ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1
|
1358
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
1359
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
1360
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
1361
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
1362
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
1363
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
1364
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
1365
|
+
[1m[35mCalendarRecurrence Load (0.2ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4
|
1366
|
+
[1m[36mCalendarEvent Load (0.4ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 4 LIMIT 1[0m
|
1367
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (4, 1, 14, 1, 6)
|
1368
|
+
[1m[36m (84.1ms)[0m [1mCOMMIT[0m
|
1369
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1370
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 4, 0, '2011-02-04', 5)[0m
|
1371
|
+
[1m[35m (79.7ms)[0m COMMIT
|
1372
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 4[0m
|
1373
|
+
[1m[35m (5.7ms)[0m BEGIN
|
1374
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1375
|
+
[1m[35m (74.5ms)[0m COMMIT
|
1376
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1377
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 5, 0, '2011-02-05', 6)
|
1378
|
+
[1m[36m (53.6ms)[0m [1mCOMMIT[0m
|
1379
|
+
[1m[35m (0.3ms)[0m BEGIN
|
1380
|
+
[1m[36m (10.6ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))[0m
|
1381
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 5, 6, 'some event description', '2012-06-21 22:01:44', NULL, NULL, '2012-01-14 22:01:44', NULL)
|
1382
|
+
[1m[36mCalendarEventType Load (0.2ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1[0m
|
1383
|
+
[1m[35mCalendarRecurrence Load (0.5ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
1384
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
1385
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
1386
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
1387
|
+
[1m[35mCalendarRecurrence Load (0.5ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
1388
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
1389
|
+
[1m[35m (84.6ms)[0m COMMIT
|
1390
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1391
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 6, 0, '2011-02-06', 0)
|
1392
|
+
[1m[36mCalendarRecurrence Load (4.8ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
1393
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 5
|
1394
|
+
[1m[36mCalendarEvent Load (0.4ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 5 LIMIT 1[0m
|
1395
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (5, 1, 14, 1, 6)
|
1396
|
+
[1m[36m (40.6ms)[0m [1mCOMMIT[0m
|
1397
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1398
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 7, 0, '2011-02-07', 1)[0m
|
1399
|
+
[1m[35m (72.1ms)[0m COMMIT
|
1400
|
+
[1m[36m (11.1ms)[0m [1mSELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 5[0m
|
1401
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1402
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1403
|
+
[1m[35m (96.1ms)[0m COMMIT
|
1404
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1405
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 8, 1, '2011-02-08', 2)
|
1406
|
+
[1m[36m (80.8ms)[0m [1mCOMMIT[0m
|
1407
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1408
|
+
[1m[36m (7.8ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))[0m
|
1409
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 5, 7, 'some event description', '2012-06-21 22:01:45', NULL, NULL, '2012-01-14 22:01:45', NULL)
|
1410
|
+
[1m[36mCalendarEventType Load (0.2ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1[0m
|
1411
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
1412
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
1413
|
+
[1m[35mCalendarRecurrence Load (4.7ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
1414
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
1415
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
1416
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
1417
|
+
[1m[35mCalendarRecurrence Load (3.2ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
1418
|
+
[1m[36m (84.7ms)[0m [1mCOMMIT[0m
|
1419
|
+
[1m[35mCalendarRecurrence Load (1.0ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 6
|
1420
|
+
[1m[36m (3.0ms)[0m [1mBEGIN[0m
|
1421
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 9, 1, '2011-02-09', 3)
|
1422
|
+
[1m[36mCalendarEvent Load (3.4ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 6 LIMIT 1[0m
|
1423
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (6, 1, 14, 1, 6)
|
1424
|
+
[1m[36m (44.2ms)[0m [1mCOMMIT[0m
|
1425
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1426
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 10, 1, '2011-02-10', 4)[0m
|
1427
|
+
[1m[35m (86.0ms)[0m COMMIT
|
1428
|
+
[1m[36mCalendarDate Load (9.4ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 6[0m
|
1429
|
+
[1m[35m (0.9ms)[0m BEGIN
|
1430
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1431
|
+
[1m[35m (85.5ms)[0m COMMIT
|
1432
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1433
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 11, 1, '2011-02-11', 5)
|
1434
|
+
[1m[36m (70.4ms)[0m [1mCOMMIT[0m
|
1435
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1436
|
+
[1m[36m (2.1ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))[0m
|
1437
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 5, 8, 'some event description', '2012-06-21 22:01:45', NULL, NULL, '2012-01-14 22:01:45', NULL)
|
1438
|
+
[1m[36mCalendarEventType Load (0.2ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1[0m
|
1439
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
1440
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
1441
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
1442
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
1443
|
+
[1m[35mCalendarRecurrence Load (0.5ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
1444
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
1445
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
1446
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7[0m
|
1447
|
+
[1m[35mCalendarEvent Load (0.4ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 7 LIMIT 1
|
1448
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (7, 1, 14, 1, 6)[0m
|
1449
|
+
[1m[35m (85.1ms)[0m COMMIT
|
1450
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1451
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 12, 1, '2011-02-12', 6)
|
1452
|
+
[1m[36m (50.3ms)[0m [1mCOMMIT[0m
|
1453
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 7
|
1454
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1455
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
1456
|
+
[1m[36m (83.7ms)[0m [1mCOMMIT[0m
|
1457
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1458
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 13, 1, '2011-02-13', 0)[0m
|
1459
|
+
[1m[35m (82.1ms)[0m COMMIT
|
1460
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1461
|
+
[1m[35m (1.3ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))
|
1462
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 5, 9, 'some event description', '2012-06-21 22:01:45', NULL, NULL, '2012-01-14 22:01:45', NULL)[0m
|
1463
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1
|
1464
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
1465
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
1466
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
1467
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
1468
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
1469
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
1470
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
1471
|
+
[1m[35mCalendarRecurrence Load (0.2ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 8
|
1472
|
+
[1m[36mCalendarEvent Load (0.4ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 8 LIMIT 1[0m
|
1473
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (8, 1, 14, 1, 6)
|
1474
|
+
[1m[36m (85.0ms)[0m [1mCOMMIT[0m
|
1475
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1476
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 14, 1, '2011-02-14', 1)[0m
|
1477
|
+
[1m[35m (60.9ms)[0m COMMIT
|
1478
|
+
[1m[36m (6.6ms)[0m [1mSELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 8[0m
|
1479
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1480
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1481
|
+
[1m[35m (85.9ms)[0m COMMIT
|
1482
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1483
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 15, 2, '2011-02-15', 2)
|
1484
|
+
[1m[36m (76.7ms)[0m [1mCOMMIT[0m
|
1485
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1486
|
+
[1m[36m (1.4ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))[0m
|
1487
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 5, 10, 'some event description', '2012-06-21 22:01:45', NULL, NULL, '2012-01-14 22:01:45', NULL)
|
1488
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1[0m
|
1489
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
1490
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
1491
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
1492
|
+
[1m[36m (97.8ms)[0m [1mCOMMIT[0m
|
1493
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1494
|
+
[1m[36mCalendarRecurrence Load (1.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
1495
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 16, 2, '2011-02-16', 3)
|
1496
|
+
[1m[36mCalendarRecurrence Load (1.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
1497
|
+
[1m[35mCalendarRecurrence Load (0.5ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
1498
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
1499
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 9
|
1500
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 9 LIMIT 1[0m
|
1501
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (9, 1, 14, 1, 6)
|
1502
|
+
[1m[36m (49.7ms)[0m [1mCOMMIT[0m
|
1503
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1504
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 17, 2, '2011-02-17', 4)[0m
|
1505
|
+
[1m[35m (82.2ms)[0m COMMIT
|
1506
|
+
[1m[36mCalendarDate Load (7.9ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 9[0m
|
1507
|
+
[1m[35m (0.2ms)[0m BEGIN
|
1508
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1509
|
+
[1m[35m (85.8ms)[0m COMMIT
|
1510
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1511
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 18, 2, '2011-02-18', 5)
|
1512
|
+
[1m[36m (74.6ms)[0m [1mCOMMIT[0m
|
1513
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1514
|
+
[1m[36m (1.3ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21'))[0m
|
1515
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 5, 11, 'some event description', '2012-06-21 22:01:46', NULL, NULL, '2012-01-14 22:01:46', NULL)
|
1516
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 5 LIMIT 1[0m
|
1517
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
1518
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
1519
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
1520
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
1521
|
+
[1m[35mCalendarRecurrence Load (0.5ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
1522
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
1523
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
1524
|
+
[1m[36mCalendarRecurrence Load (0.2ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 10[0m
|
1525
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 10 LIMIT 1
|
1526
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (10, 1, 14, 1, 6)[0m
|
1527
|
+
[1m[35m (97.0ms)[0m COMMIT
|
1528
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1529
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 19, 2, '2011-02-19', 6)
|
1530
|
+
[1m[36m (83.6ms)[0m [1mCOMMIT[0m
|
1531
|
+
[1m[35mCalendarDate Load (7.9ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 10
|
1532
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1533
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
1534
|
+
[1m[36m (108.5ms)[0m [1mCOMMIT[0m
|
1535
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1536
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 20, 2, '2011-02-20', 0)[0m
|
1537
|
+
[1m[35m (95.2ms)[0m COMMIT
|
1538
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1539
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
1540
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 1, 12, 'some event description', '2012-02-04 22:01:46', NULL, NULL, '2012-01-22 22:01:46', NULL)[0m
|
1541
|
+
[1m[35mCalendarEventType Load (0.3ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 1 LIMIT 1
|
1542
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 11[0m
|
1543
|
+
[1m[35m (107.9ms)[0m COMMIT
|
1544
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1545
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 2, 21, 2, '2011-02-21', 1)
|
1546
|
+
[1m[36m (103.2ms)[0m [1mCOMMIT[0m
|
1547
|
+
[1m[35m (5.5ms)[0m SELECT COUNT(*) FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 11
|
1548
|
+
[1m[36mCalendarDate Load (1.0ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 11 LIMIT 1[0m
|
1549
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1550
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1551
|
+
[1m[35m (108.7ms)[0m COMMIT
|
1552
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1553
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 22, 3, '2011-02-22', 2)
|
1554
|
+
[1m[36m (97.0ms)[0m [1mCOMMIT[0m
|
1555
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1556
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
1557
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 1, 13, 'some event description', '2012-02-04 22:01:46', NULL, NULL, '2012-01-22 22:01:46', NULL)
|
1558
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 1 LIMIT 1[0m
|
1559
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 12
|
1560
|
+
[1m[36m (107.9ms)[0m [1mCOMMIT[0m
|
1561
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1562
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 23, 3, '2011-02-23', 3)[0m
|
1563
|
+
[1m[35m (104.2ms)[0m COMMIT
|
1564
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 12[0m
|
1565
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1566
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1567
|
+
[1m[35m (110.0ms)[0m COMMIT
|
1568
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1569
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 24, 3, '2011-02-24', 4)
|
1570
|
+
[1m[36m (94.3ms)[0m [1mCOMMIT[0m
|
1571
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1572
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
1573
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 2, 14, 'some event description', '2012-02-04 22:01:46', NULL, NULL, '2012-01-22 22:01:46', NULL)
|
1574
|
+
[1m[36mCalendarEventType Load (0.3ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 2 LIMIT 1[0m
|
1575
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 13
|
1576
|
+
[1m[36m (86.1ms)[0m [1mCOMMIT[0m
|
1577
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1578
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 25, 3, '2011-02-25', 5)[0m
|
1579
|
+
[1m[35m (81.5ms)[0m COMMIT
|
1580
|
+
[1m[36mCalendarDate Load (5.9ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 13[0m
|
1581
|
+
[1m[35m (5.2ms)[0m SELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 13
|
1582
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1583
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
1584
|
+
[1m[36m (86.5ms)[0m [1mCOMMIT[0m
|
1585
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1586
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 26, 3, '2011-02-26', 6)[0m
|
1587
|
+
[1m[35m (69.6ms)[0m COMMIT
|
1588
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1589
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
1590
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 2, 15, 'some event description', '2012-02-04 22:01:46', NULL, NULL, '2012-01-22 22:01:46', NULL)[0m
|
1591
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 2 LIMIT 1
|
1592
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 14[0m
|
1593
|
+
[1m[35m (86.3ms)[0m COMMIT
|
1594
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1595
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 27, 3, '2011-02-27', 0)
|
1596
|
+
[1m[36m (81.5ms)[0m [1mCOMMIT[0m
|
1597
|
+
[1m[35mCalendarDate Load (6.7ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 14
|
1598
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1599
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
1600
|
+
[1m[36m (86.5ms)[0m [1mCOMMIT[0m
|
1601
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1602
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 2, 28, 3, '2011-02-28', 1)[0m
|
1603
|
+
[1m[35m (76.3ms)[0m COMMIT
|
1604
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1605
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
1606
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 2, 16, 'some event description', '2012-02-04 22:01:47', NULL, NULL, '2012-01-22 22:01:47', NULL)[0m
|
1607
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 2 LIMIT 1
|
1608
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 15[0m
|
1609
|
+
[1m[35m (86.1ms)[0m COMMIT
|
1610
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1611
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 1, 0, '2011-03-01', 2)
|
1612
|
+
[1m[36m (81.7ms)[0m [1mCOMMIT[0m
|
1613
|
+
[1m[35mCalendarDate Load (7.0ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 15
|
1614
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 15[0m
|
1615
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1616
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1617
|
+
[1m[35m (97.7ms)[0m COMMIT
|
1618
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1619
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 2, 0, '2011-03-02', 3)
|
1620
|
+
[1m[36m (85.2ms)[0m [1mCOMMIT[0m
|
1621
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1622
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
1623
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 2, 17, 'some event description', '2012-02-04 22:01:47', NULL, NULL, '2012-01-22 22:01:47', NULL)
|
1624
|
+
[1m[36mCalendarEventType Load (0.2ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 2 LIMIT 1[0m
|
1625
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 16
|
1626
|
+
[1m[36m (86.1ms)[0m [1mCOMMIT[0m
|
1627
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1628
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 3, 0, '2011-03-03', 4)[0m
|
1629
|
+
[1m[35m (79.9ms)[0m COMMIT
|
1630
|
+
[1m[36mCalendarDate Load (6.4ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 16[0m
|
1631
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1632
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1633
|
+
[1m[35m (86.6ms)[0m COMMIT
|
1634
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1635
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 4, 0, '2011-03-04', 5)
|
1636
|
+
[1m[36m (75.0ms)[0m [1mCOMMIT[0m
|
1637
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1638
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
1639
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 4, 18, 'some event description', '2012-02-04 22:01:47', NULL, NULL, '2012-01-22 22:01:47', NULL)
|
1640
|
+
[1m[36mCalendarEventType Load (0.3ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 4 LIMIT 1[0m
|
1641
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 17
|
1642
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 17 LIMIT 1[0m
|
1643
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (17, NULL, NULL, NULL, 1)
|
1644
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 17 LIMIT 1[0m
|
1645
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (17, NULL, NULL, NULL, 3)
|
1646
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 17 LIMIT 1[0m
|
1647
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (17, NULL, NULL, NULL, 5)
|
1648
|
+
[1m[36m (85.9ms)[0m [1mCOMMIT[0m
|
1649
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1650
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 5, 0, '2011-03-05', 6)[0m
|
1651
|
+
[1m[35m (71.5ms)[0m COMMIT
|
1652
|
+
[1m[36mCalendarDate Load (7.0ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 17[0m
|
1653
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1654
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1655
|
+
[1m[35m (86.0ms)[0m COMMIT
|
1656
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1657
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 6, 0, '2011-03-06', 0)
|
1658
|
+
[1m[36m (75.5ms)[0m [1mCOMMIT[0m
|
1659
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1660
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
1661
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 4, 19, 'some event description', '2012-02-04 22:01:47', NULL, NULL, '2012-01-22 22:01:47', NULL)
|
1662
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 4 LIMIT 1[0m
|
1663
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 18
|
1664
|
+
[1m[36mCalendarEvent Load (0.4ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 18 LIMIT 1[0m
|
1665
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (18, NULL, NULL, NULL, 1)
|
1666
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 18 LIMIT 1[0m
|
1667
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (18, NULL, NULL, NULL, 3)
|
1668
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 18 LIMIT 1[0m
|
1669
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (18, NULL, NULL, NULL, 5)
|
1670
|
+
[1m[36m (86.3ms)[0m [1mCOMMIT[0m
|
1671
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1672
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 7, 0, '2011-03-07', 1)[0m
|
1673
|
+
[1m[35m (71.5ms)[0m COMMIT
|
1674
|
+
[1m[36mCalendarDate Load (6.9ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 18[0m
|
1675
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 18
|
1676
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1677
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
1678
|
+
[1m[36m (85.9ms)[0m [1mCOMMIT[0m
|
1679
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1680
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 8, 1, '2011-03-08', 2)[0m
|
1681
|
+
[1m[35m (74.1ms)[0m COMMIT
|
1682
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1683
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))
|
1684
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 4, 20, 'some event description', '2012-02-04 22:01:47', NULL, NULL, '2012-01-22 22:01:47', NULL)[0m
|
1685
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 4 LIMIT 1
|
1686
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 19[0m
|
1687
|
+
[1m[35mCalendarEvent Load (0.4ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 19 LIMIT 1
|
1688
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (19, NULL, NULL, NULL, 1)[0m
|
1689
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 19 LIMIT 1
|
1690
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (19, NULL, NULL, NULL, 3)[0m
|
1691
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 19 LIMIT 1
|
1692
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (19, NULL, NULL, NULL, 5)[0m
|
1693
|
+
[1m[35m (97.1ms)[0m COMMIT
|
1694
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1695
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 9, 1, '2011-03-09', 3)
|
1696
|
+
[1m[36m (94.1ms)[0m [1mCOMMIT[0m
|
1697
|
+
[1m[35mCalendarDate Load (7.2ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 19
|
1698
|
+
[1m[36m (6.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 19[0m
|
1699
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1700
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1701
|
+
[1m[35m (108.7ms)[0m COMMIT
|
1702
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1703
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 10, 1, '2011-03-10', 4)
|
1704
|
+
[1m[36m (88.7ms)[0m [1mCOMMIT[0m
|
1705
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1706
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04'))[0m
|
1707
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 4, 21, 'some event description', '2012-02-04 22:01:47', NULL, NULL, '2012-01-22 22:01:47', NULL)
|
1708
|
+
[1m[36mCalendarEventType Load (0.2ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 4 LIMIT 1[0m
|
1709
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 20
|
1710
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 20 LIMIT 1[0m
|
1711
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (20, NULL, NULL, NULL, 1)
|
1712
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 20 LIMIT 1[0m
|
1713
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (20, NULL, NULL, NULL, 3)
|
1714
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 20 LIMIT 1[0m
|
1715
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (20, NULL, NULL, NULL, 5)
|
1716
|
+
[1m[36m (107.6ms)[0m [1mCOMMIT[0m
|
1717
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1718
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 11, 1, '2011-03-11', 5)[0m
|
1719
|
+
[1m[35m (93.9ms)[0m COMMIT
|
1720
|
+
[1m[36mCalendarDate Load (7.2ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 20[0m
|
1721
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1722
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
1723
|
+
[1m[35m (108.8ms)[0m COMMIT
|
1724
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1725
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 12, 1, '2011-03-12', 6)
|
1726
|
+
[1m[36m (97.4ms)[0m [1mCOMMIT[0m
|
1727
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1728
|
+
[1m[36m (1.7ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))[0m
|
1729
|
+
[1m[35mCalendarDate Load (2.1ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))
|
1730
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 21, 2, '2011-12-21', 3)[0m
|
1731
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 22, 3, '2011-12-22', 4)
|
1732
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 23, 3, '2011-12-23', 5)[0m
|
1733
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 24, 3, '2011-12-24', 6)
|
1734
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 25, 3, '2011-12-25', 0)[0m
|
1735
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 26, 3, '2011-12-26', 1)
|
1736
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 27, 3, '2011-12-27', 2)[0m
|
1737
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 28, 3, '2011-12-28', 3)
|
1738
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 29, 4, '2011-12-29', 4)[0m
|
1739
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 30, 4, '2011-12-30', 5)
|
1740
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 31, 4, '2011-12-31', 6)[0m
|
1741
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 1, 0, '2012-01-01', 0)
|
1742
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 2, 0, '2012-01-02', 1)[0m
|
1743
|
+
[1m[35m (109.5ms)[0m COMMIT
|
1744
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 3, 0, '2012-01-03', 2)[0m
|
1745
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1746
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 4, 0, '2012-01-04', 3)[0m
|
1747
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 13, 1, '2011-03-13', 0)
|
1748
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 5, 0, '2012-01-05', 4)[0m
|
1749
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 6, 0, '2012-01-06', 5)
|
1750
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 7, 0, '2012-01-07', 6)[0m
|
1751
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 8, 1, '2012-01-08', 0)
|
1752
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 9, 1, '2012-01-09', 1)[0m
|
1753
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 10, 1, '2012-01-10', 2)
|
1754
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 11, 1, '2012-01-11', 3)[0m
|
1755
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 12, 1, '2012-01-12', 4)
|
1756
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 13, 1, '2012-01-13', 5)[0m
|
1757
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 22, 3, '2012-06-22', 5)
|
1758
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 6, 23, 3, '2012-06-23', 6)[0m
|
1759
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 24, 3, '2012-06-24', 0)
|
1760
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 25, 3, '2012-06-25', 1)[0m
|
1761
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 26, 3, '2012-06-26', 2)
|
1762
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 27, 3, '2012-06-27', 3)[0m
|
1763
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 28, 3, '2012-06-28', 4)
|
1764
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 29, 4, '2012-06-29', 5)[0m
|
1765
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 6, 30, 4, '2012-06-30', 6)
|
1766
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 1, 0, '2012-07-01', 0)[0m
|
1767
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 2, 0, '2012-07-02', 1)
|
1768
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 3, 0, '2012-07-03', 2)[0m
|
1769
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 4, 0, '2012-07-04', 3)
|
1770
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 5, 0, '2012-07-05', 4)[0m
|
1771
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 6, 0, '2012-07-06', 5)
|
1772
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 7, 0, '2012-07-07', 6)[0m
|
1773
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 8, 1, '2012-07-08', 0)
|
1774
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 9, 1, '2012-07-09', 1)[0m
|
1775
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 10, 1, '2012-07-10', 2)
|
1776
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 11, 1, '2012-07-11', 3)[0m
|
1777
|
+
[1m[35m (49.2ms)[0m COMMIT
|
1778
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 12, 1, '2012-07-12', 4)[0m
|
1779
|
+
[1m[35m (1.5ms)[0m BEGIN
|
1780
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 13, 1, '2012-07-13', 5)[0m
|
1781
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 14, 1, '2011-03-14', 1)
|
1782
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 14, 1, '2012-07-14', 6)[0m
|
1783
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 15, 2, '2012-07-15', 0)
|
1784
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 16, 2, '2012-07-16', 1)[0m
|
1785
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 17, 2, '2012-07-17', 2)
|
1786
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 18, 2, '2012-07-18', 3)[0m
|
1787
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 19, 2, '2012-07-19', 4)
|
1788
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 20, 2, '2012-07-20', 5)[0m
|
1789
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 21, 2, '2012-07-21', 6)
|
1790
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 22, 3, '2012-07-22', 0)[0m
|
1791
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 23, 3, '2012-07-23', 1)
|
1792
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 7, 24, 3, '2012-07-24', 2)[0m
|
1793
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 25, 3, '2012-07-25', 3)
|
1794
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 26, 3, '2012-07-26', 4)[0m
|
1795
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 27, 3, '2012-07-27', 5)
|
1796
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 28, 3, '2012-07-28', 6)[0m
|
1797
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 29, 4, '2012-07-29', 0)
|
1798
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 30, 4, '2012-07-30', 1)[0m
|
1799
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 7, 31, 4, '2012-07-31', 2)
|
1800
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 1, 0, '2012-08-01', 3)[0m
|
1801
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 2, 0, '2012-08-02', 4)
|
1802
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 3, 0, '2012-08-03', 5)[0m
|
1803
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 4, 0, '2012-08-04', 6)
|
1804
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 5, 0, '2012-08-05', 0)[0m
|
1805
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 6, 0, '2012-08-06', 1)
|
1806
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 7, 0, '2012-08-07', 2)[0m
|
1807
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 8, 1, '2012-08-08', 3)
|
1808
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 9, 1, '2012-08-09', 4)[0m
|
1809
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 10, 1, '2012-08-10', 5)
|
1810
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 11, 1, '2012-08-11', 6)[0m
|
1811
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 12, 1, '2012-08-12', 0)
|
1812
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 13, 1, '2012-08-13', 1)[0m
|
1813
|
+
[1m[35m (51.3ms)[0m COMMIT
|
1814
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1815
|
+
[1m[35mSQL (1.9ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 14, 1, '2012-08-14', 2)
|
1816
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 15, 2, '2011-03-15', 2)[0m
|
1817
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 15, 2, '2012-08-15', 3)
|
1818
|
+
[1m[36mSQL (14.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 16, 2, '2012-08-16', 4)[0m
|
1819
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 17, 2, '2012-08-17', 5)
|
1820
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 18, 2, '2012-08-18', 6)[0m
|
1821
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 19, 2, '2012-08-19', 0)
|
1822
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 20, 2, '2012-08-20', 1)[0m
|
1823
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 21, 2, '2012-08-21', 2)
|
1824
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 22, 3, '2012-08-22', 3)[0m
|
1825
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 23, 3, '2012-08-23', 4)
|
1826
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 8, 24, 3, '2012-08-24', 5)[0m
|
1827
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 25, 3, '2012-08-25', 6)
|
1828
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 26, 3, '2012-08-26', 0)[0m
|
1829
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 27, 3, '2012-08-27', 1)
|
1830
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 28, 3, '2012-08-28', 2)[0m
|
1831
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 29, 4, '2012-08-29', 3)
|
1832
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 30, 4, '2012-08-30', 4)[0m
|
1833
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 8, 31, 4, '2012-08-31', 5)
|
1834
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 1, 0, '2012-09-01', 6)[0m
|
1835
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 2, 0, '2012-09-02', 0)
|
1836
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 3, 0, '2012-09-03', 1)[0m
|
1837
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 4, 0, '2012-09-04', 2)
|
1838
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 5, 0, '2012-09-05', 3)[0m
|
1839
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 6, 0, '2012-09-06', 4)
|
1840
|
+
[1m[36m (51.9ms)[0m [1mCOMMIT[0m
|
1841
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 7, 0, '2012-09-07', 5)
|
1842
|
+
[1m[36m (1.6ms)[0m [1mBEGIN[0m
|
1843
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 8, 1, '2012-09-08', 6)
|
1844
|
+
[1m[36mSQL (1.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 16, 2, '2011-03-16', 3)[0m
|
1845
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 9, 1, '2012-09-09', 0)
|
1846
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 10, 1, '2012-09-10', 1)[0m
|
1847
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 11, 1, '2012-09-11', 2)
|
1848
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 12, 1, '2012-09-12', 3)[0m
|
1849
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 13, 1, '2012-09-13', 4)
|
1850
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 14, 1, '2012-09-14', 5)[0m
|
1851
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 15, 2, '2012-09-15', 6)
|
1852
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 16, 2, '2012-09-16', 0)[0m
|
1853
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 17, 2, '2012-09-17', 1)
|
1854
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 18, 2, '2012-09-18', 2)[0m
|
1855
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 19, 2, '2012-09-19', 3)
|
1856
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 20, 2, '2012-09-20', 4)[0m
|
1857
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 21, 2, '2012-09-21', 5)
|
1858
|
+
[1m[36m (49.5ms)[0m [1mCOMMIT[0m
|
1859
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 22, 3, '2012-09-22', 6)
|
1860
|
+
[1m[36m (2.0ms)[0m [1mBEGIN[0m
|
1861
|
+
[1m[35mSQL (1.7ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 9, 23, 3, '2012-09-23', 0)
|
1862
|
+
[1m[36mSQL (2.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 17, 2, '2011-03-17', 4)[0m
|
1863
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 24, 3, '2012-09-24', 1)
|
1864
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 25, 3, '2012-09-25', 2)[0m
|
1865
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 26, 3, '2012-09-26', 3)
|
1866
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 27, 3, '2012-09-27', 4)[0m
|
1867
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 28, 3, '2012-09-28', 5)
|
1868
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 29, 4, '2012-09-29', 6)[0m
|
1869
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 9, 30, 4, '2012-09-30', 0)
|
1870
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 1, 0, '2012-10-01', 1)[0m
|
1871
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 2, 0, '2012-10-02', 2)
|
1872
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 3, 0, '2012-10-03', 3)[0m
|
1873
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 4, 0, '2012-10-04', 4)
|
1874
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 5, 0, '2012-10-05', 5)[0m
|
1875
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 6, 0, '2012-10-06', 6)
|
1876
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 7, 0, '2012-10-07', 0)[0m
|
1877
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 8, 1, '2012-10-08', 1)
|
1878
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 9, 1, '2012-10-09', 2)[0m
|
1879
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 10, 1, '2012-10-10', 3)
|
1880
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 11, 1, '2012-10-11', 4)[0m
|
1881
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 12, 1, '2012-10-12', 5)
|
1882
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 13, 1, '2012-10-13', 6)[0m
|
1883
|
+
[1m[35m (39.9ms)[0m COMMIT
|
1884
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 14, 1, '2012-10-14', 0)[0m
|
1885
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 15, 2, '2012-10-15', 1)
|
1886
|
+
[1m[36m (1.9ms)[0m [1mBEGIN[0m
|
1887
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 16, 2, '2012-10-16', 2)
|
1888
|
+
[1m[36mSQL (1.9ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 18, 2, '2011-03-18', 5)[0m
|
1889
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 17, 2, '2012-10-17', 3)
|
1890
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 18, 2, '2012-10-18', 4)[0m
|
1891
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 19, 2, '2012-10-19', 5)
|
1892
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 20, 2, '2012-10-20', 6)[0m
|
1893
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 21, 2, '2012-10-21', 0)
|
1894
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 22, 3, '2012-10-22', 1)[0m
|
1895
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 23, 3, '2012-10-23', 2)
|
1896
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 10, 24, 3, '2012-10-24', 3)[0m
|
1897
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 25, 3, '2012-10-25', 4)
|
1898
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 26, 3, '2012-10-26', 5)[0m
|
1899
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 27, 3, '2012-10-27', 6)
|
1900
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 28, 3, '2012-10-28', 0)[0m
|
1901
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 29, 4, '2012-10-29', 1)
|
1902
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 30, 4, '2012-10-30', 2)[0m
|
1903
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 10, 31, 4, '2012-10-31', 3)
|
1904
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 1, 0, '2012-11-01', 4)[0m
|
1905
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 2, 0, '2012-11-02', 5)
|
1906
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 3, 0, '2012-11-03', 6)[0m
|
1907
|
+
[1m[35m (37.3ms)[0m COMMIT
|
1908
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 4, 0, '2012-11-04', 0)[0m
|
1909
|
+
[1m[35m (2.0ms)[0m BEGIN
|
1910
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 5, 0, '2012-11-05', 1)[0m
|
1911
|
+
[1m[35mSQL (1.7ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 19, 2, '2011-03-19', 6)
|
1912
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 6, 0, '2012-11-06', 2)[0m
|
1913
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 7, 0, '2012-11-07', 3)
|
1914
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 8, 1, '2012-11-08', 4)[0m
|
1915
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 9, 1, '2012-11-09', 5)
|
1916
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 10, 1, '2012-11-10', 6)[0m
|
1917
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 11, 1, '2012-11-11', 0)
|
1918
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 12, 1, '2012-11-12', 1)[0m
|
1919
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 13, 1, '2012-11-13', 2)
|
1920
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 14, 1, '2012-11-14', 3)[0m
|
1921
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 15, 2, '2012-11-15', 4)
|
1922
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 16, 2, '2012-11-16', 5)[0m
|
1923
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 17, 2, '2012-11-17', 6)
|
1924
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 18, 2, '2012-11-18', 0)[0m
|
1925
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 19, 2, '2012-11-19', 1)
|
1926
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 20, 2, '2012-11-20', 2)[0m
|
1927
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 21, 2, '2012-11-21', 3)
|
1928
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 22, 3, '2012-11-22', 4)[0m
|
1929
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 11, 23, 3, '2012-11-23', 5)
|
1930
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 24, 3, '2012-11-24', 6)[0m
|
1931
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 25, 3, '2012-11-25', 0)
|
1932
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 26, 3, '2012-11-26', 1)[0m
|
1933
|
+
[1m[35m (38.0ms)[0m COMMIT
|
1934
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 27, 3, '2012-11-27', 2)[0m
|
1935
|
+
[1m[35m (1.7ms)[0m BEGIN
|
1936
|
+
[1m[36mSQL (1.4ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 28, 3, '2012-11-28', 3)[0m
|
1937
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 20, 2, '2011-03-20', 0)
|
1938
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 29, 4, '2012-11-29', 4)[0m
|
1939
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 11, 30, 4, '2012-11-30', 5)
|
1940
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 1, 0, '2012-12-01', 6)[0m
|
1941
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 2, 0, '2012-12-02', 0)
|
1942
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 3, 0, '2012-12-03', 1)[0m
|
1943
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 4, 0, '2012-12-04', 2)
|
1944
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 5, 0, '2012-12-05', 3)[0m
|
1945
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 6, 0, '2012-12-06', 4)
|
1946
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 7, 0, '2012-12-07', 5)[0m
|
1947
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 8, 1, '2012-12-08', 6)
|
1948
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 9, 1, '2012-12-09', 0)[0m
|
1949
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 10, 1, '2012-12-10', 1)
|
1950
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 11, 1, '2012-12-11', 2)[0m
|
1951
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 12, 1, '2012-12-12', 3)
|
1952
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 13, 1, '2012-12-13', 4)[0m
|
1953
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 14, 1, '2012-12-14', 5)
|
1954
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 15, 2, '2012-12-15', 6)[0m
|
1955
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 16, 2, '2012-12-16', 0)
|
1956
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 17, 2, '2012-12-17', 1)[0m
|
1957
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 18, 2, '2012-12-18', 2)
|
1958
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 19, 2, '2012-12-19', 3)[0m
|
1959
|
+
[1m[35m (38.6ms)[0m COMMIT
|
1960
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 20, 2, '2012-12-20', 4)[0m
|
1961
|
+
[1m[35m (1.6ms)[0m BEGIN
|
1962
|
+
[1m[36mSQL (2.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 21, 2, '2012-12-21', 5)[0m
|
1963
|
+
[1m[35mSQL (2.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 21, 2, '2011-03-21', 1)
|
1964
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 22, 3, '2012-12-22', 6)[0m
|
1965
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 23, 3, '2012-12-23', 0)
|
1966
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 12, 24, 3, '2012-12-24', 1)[0m
|
1967
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 25, 3, '2012-12-25', 2)
|
1968
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 26, 3, '2012-12-26', 3)[0m
|
1969
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 27, 3, '2012-12-27', 4)
|
1970
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 28, 3, '2012-12-28', 5)[0m
|
1971
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 29, 4, '2012-12-29', 6)
|
1972
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 30, 4, '2012-12-30', 0)[0m
|
1973
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 12, 31, 4, '2012-12-31', 1)
|
1974
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 1, 0, '2013-01-01', 2)[0m
|
1975
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 2, 0, '2013-01-02', 3)
|
1976
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 3, 0, '2013-01-03', 4)[0m
|
1977
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 4, 0, '2013-01-04', 5)
|
1978
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 5, 0, '2013-01-05', 6)[0m
|
1979
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 6, 0, '2013-01-06', 0)
|
1980
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 7, 0, '2013-01-07', 1)[0m
|
1981
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 8, 1, '2013-01-08', 2)
|
1982
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 9, 1, '2013-01-09', 3)[0m
|
1983
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 10, 1, '2013-01-10', 4)
|
1984
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 11, 1, '2013-01-11', 5)[0m
|
1985
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 12, 1, '2013-01-12', 6)
|
1986
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 13, 1, '2013-01-13', 0)[0m
|
1987
|
+
[1m[35m (39.3ms)[0m COMMIT
|
1988
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 14, 1, '2013-01-14', 1)[0m
|
1989
|
+
[1m[35m (1.6ms)[0m BEGIN
|
1990
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 15, 2, '2013-01-15', 2)[0m
|
1991
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 22, 3, '2011-03-22', 2)
|
1992
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 16, 2, '2013-01-16', 3)[0m
|
1993
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 17, 2, '2013-01-17', 4)
|
1994
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 18, 2, '2013-01-18', 5)[0m
|
1995
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 19, 2, '2013-01-19', 6)
|
1996
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 20, 2, '2013-01-20', 0)[0m
|
1997
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 1, 21, 2, '2013-01-21', 1)
|
1998
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 6, 22, 'some event description', '2013-01-21 22:01:48', NULL, NULL, '2011-12-21 22:01:48', NULL)[0m
|
1999
|
+
[1m[35mCalendarEventType Load (0.3ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1
|
2000
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
2001
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
2002
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
2003
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
2004
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
2005
|
+
[1m[35mCalendarRecurrence Load (0.5ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
2006
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
2007
|
+
[1m[35mCalendarRecurrence Load (0.2ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21
|
2008
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 21 LIMIT 1[0m
|
2009
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (21, 12, 21, 2, 3)
|
2010
|
+
[1m[36m (80.8ms)[0m [1mCOMMIT[0m
|
2011
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2012
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 23, 3, '2011-03-23', 3)[0m
|
2013
|
+
[1m[35m (85.5ms)[0m COMMIT
|
2014
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 21[0m
|
2015
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2016
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
2017
|
+
[1m[35m (86.3ms)[0m COMMIT
|
2018
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2019
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 3, 24, 3, '2011-03-24', 4)
|
2020
|
+
[1m[36m (65.6ms)[0m [1mCOMMIT[0m
|
2021
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2022
|
+
[1m[36m (2.8ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))[0m
|
2023
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 6, 23, 'some event description', '2013-01-21 22:01:48', NULL, NULL, '2011-12-21 22:01:48', NULL)
|
2024
|
+
[1m[36mCalendarEventType Load (0.2ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1[0m
|
2025
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
2026
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
2027
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
2028
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
2029
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
2030
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
2031
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
2032
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 22[0m
|
2033
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 22 LIMIT 1
|
2034
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (22, 12, 21, 2, 3)[0m
|
2035
|
+
[1m[35m (85.4ms)[0m COMMIT
|
2036
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2037
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 25, 3, '2011-03-25', 5)
|
2038
|
+
[1m[36m (54.6ms)[0m [1mCOMMIT[0m
|
2039
|
+
[1m[35m (24.7ms)[0m SELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 22
|
2040
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2041
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
2042
|
+
[1m[36m (86.2ms)[0m [1mCOMMIT[0m
|
2043
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2044
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 26, 3, '2011-03-26', 6)[0m
|
2045
|
+
[1m[35m (57.8ms)[0m COMMIT
|
2046
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2047
|
+
[1m[35m (2.6ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))
|
2048
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 6, 24, 'some event description', '2013-01-21 22:01:49', NULL, NULL, '2011-12-21 22:01:49', NULL)[0m
|
2049
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1
|
2050
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
2051
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
2052
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
2053
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
2054
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
2055
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
2056
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
2057
|
+
[1m[35mCalendarRecurrence Load (0.2ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 23
|
2058
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 23 LIMIT 1[0m
|
2059
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (23, 12, 21, 2, 3)
|
2060
|
+
[1m[36m (85.9ms)[0m [1mCOMMIT[0m
|
2061
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2062
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 27, 3, '2011-03-27', 0)[0m
|
2063
|
+
[1m[35m (53.6ms)[0m COMMIT
|
2064
|
+
[1m[36mCalendarDate Load (27.8ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 23[0m
|
2065
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2066
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
2067
|
+
[1m[35m (86.1ms)[0m COMMIT
|
2068
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2069
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 28, 3, '2011-03-28', 1)
|
2070
|
+
[1m[36m (54.1ms)[0m [1mCOMMIT[0m
|
2071
|
+
[1m[35m (0.2ms)[0m BEGIN
|
2072
|
+
[1m[36m (2.8ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))[0m
|
2073
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (1, 6, 25, 'some event description', '2013-01-21 22:01:49', NULL, NULL, '2011-12-21 22:01:49', NULL)
|
2074
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1[0m
|
2075
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
2076
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
2077
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
2078
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
2079
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
2080
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
2081
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
2082
|
+
[1m[36mCalendarRecurrence Load (0.2ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 24[0m
|
2083
|
+
[1m[35mCalendarEvent Load (0.3ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 24 LIMIT 1
|
2084
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (24, 12, 21, 2, 3)[0m
|
2085
|
+
[1m[35m (86.5ms)[0m COMMIT
|
2086
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2087
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 29, 4, '2011-03-29', 2)
|
2088
|
+
[1m[36m (53.7ms)[0m [1mCOMMIT[0m
|
2089
|
+
[1m[35mCalendarDate Load (28.4ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 24
|
2090
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2091
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
2092
|
+
[1m[36m (86.2ms)[0m [1mCOMMIT[0m
|
2093
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2094
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 30, 4, '2011-03-30', 3)[0m
|
2095
|
+
[1m[35m (53.4ms)[0m COMMIT
|
2096
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2097
|
+
[1m[35m (2.6ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))
|
2098
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 6, 26, 'some event description', '2013-01-21 22:01:49', NULL, NULL, '2011-12-21 22:01:49', NULL)[0m
|
2099
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1
|
2100
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
2101
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
2102
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
2103
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
2104
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
2105
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
2106
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
2107
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25
|
2108
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 25 LIMIT 1[0m
|
2109
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (25, 12, 21, 2, 3)
|
2110
|
+
[1m[36m (97.4ms)[0m [1mCOMMIT[0m
|
2111
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2112
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (1, 3, 31, 4, '2011-03-31', 4)[0m
|
2113
|
+
[1m[35m (75.4ms)[0m COMMIT
|
2114
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 25[0m
|
2115
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2116
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
2117
|
+
[1m[35m (108.4ms)[0m COMMIT
|
2118
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2119
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 1, 0, '2011-04-01', 5)
|
2120
|
+
[1m[36m (105.5ms)[0m [1mCOMMIT[0m
|
2121
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2122
|
+
[1m[36m (2.6ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))[0m
|
2123
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 6, 27, 'some event description', '2013-01-21 22:01:49', NULL, NULL, '2011-12-21 22:01:49', NULL)
|
2124
|
+
[1m[36mCalendarEventType Load (0.1ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1[0m
|
2125
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
2126
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
2127
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
2128
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
2129
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
2130
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
2131
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1
|
2132
|
+
[1m[36mCalendarRecurrence Load (0.2ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 26[0m
|
2133
|
+
[1m[35mCalendarEvent Load (0.4ms)[0m SELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 26 LIMIT 1
|
2134
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (26, 12, 21, 2, 3)[0m
|
2135
|
+
[1m[35m (108.1ms)[0m COMMIT
|
2136
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2137
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 2, 0, '2011-04-02', 6)
|
2138
|
+
[1m[36m (75.7ms)[0m [1mCOMMIT[0m
|
2139
|
+
[1m[35m (27.8ms)[0m SELECT COUNT(*) FROM `calendar_event_dates` WHERE `calendar_event_dates`.`calendar_event_id` = 26
|
2140
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2141
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
2142
|
+
[1m[36m (108.5ms)[0m [1mCOMMIT[0m
|
2143
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2144
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 3, 0, '2011-04-03', 0)[0m
|
2145
|
+
[1m[35m (77.1ms)[0m COMMIT
|
2146
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2147
|
+
[1m[35m (3.3ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))
|
2148
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 6, 28, 'some event description', '2013-01-21 22:01:49', NULL, NULL, '2011-12-21 22:01:49', NULL)[0m
|
2149
|
+
[1m[35mCalendarEventType Load (0.1ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1
|
2150
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
2151
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
2152
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
2153
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
2154
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
2155
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
2156
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
2157
|
+
[1m[35m (106.8ms)[0m COMMIT
|
2158
|
+
[1m[36mCalendarRecurrence Load (1.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 27[0m
|
2159
|
+
[1m[35m (3.0ms)[0m BEGIN
|
2160
|
+
[1m[36mCalendarEvent Load (2.1ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 27 LIMIT 1[0m
|
2161
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 4, 0, '2011-04-04', 1)
|
2162
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (27, 12, 21, 2, 3)[0m
|
2163
|
+
[1m[35m (47.8ms)[0m COMMIT
|
2164
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2165
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 5, 0, '2011-04-05', 2)
|
2166
|
+
[1m[36m (102.8ms)[0m [1mCOMMIT[0m
|
2167
|
+
[1m[35mCalendarDate Load (29.9ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 27
|
2168
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2169
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `calendars` (`desc`) VALUES ('Test calendar')
|
2170
|
+
[1m[36m (108.2ms)[0m [1mCOMMIT[0m
|
2171
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2172
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 6, 0, '2011-04-06', 3)[0m
|
2173
|
+
[1m[35m (74.0ms)[0m COMMIT
|
2174
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2175
|
+
[1m[35m (2.6ms)[0m SELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))
|
2176
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 6, 29, 'some event description', '2013-01-21 22:01:50', NULL, NULL, '2011-12-21 22:01:50', NULL)[0m
|
2177
|
+
[1m[35mCalendarEventType Load (0.2ms)[0m SELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1
|
2178
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1[0m
|
2179
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1
|
2180
|
+
[1m[36mCalendarRecurrence Load (0.4ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1[0m
|
2181
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1
|
2182
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1[0m
|
2183
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1
|
2184
|
+
[1m[36mCalendarRecurrence Load (0.3ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
2185
|
+
[1m[35mCalendarRecurrence Load (0.3ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 28
|
2186
|
+
[1m[36mCalendarEvent Load (0.3ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 28 LIMIT 1[0m
|
2187
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (28, 12, 21, 2, 3)
|
2188
|
+
[1m[36m (97.1ms)[0m [1mCOMMIT[0m
|
2189
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2190
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 7, 0, '2011-04-07', 4)[0m
|
2191
|
+
[1m[35m (53.0ms)[0m COMMIT
|
2192
|
+
[1m[36mCalendarDate Load (30.2ms)[0m [1mSELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 28[0m
|
2193
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2194
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `calendars` (`desc`) VALUES ('Test calendar')[0m
|
2195
|
+
[1m[35m (85.7ms)[0m COMMIT
|
2196
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2197
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 8, 1, '2011-04-08', 5)
|
2198
|
+
[1m[36m (52.2ms)[0m [1mCOMMIT[0m
|
2199
|
+
[1m[35m (0.3ms)[0m BEGIN
|
2200
|
+
[1m[36m (4.8ms)[0m [1mSELECT COUNT(*) FROM `calendar_dates` WHERE (value IN ('2011-12-21','2011-12-22','2011-12-23','2011-12-24','2011-12-25','2011-12-26','2011-12-27','2011-12-28','2011-12-29','2011-12-30','2011-12-31','2012-01-01','2012-01-02','2012-01-03','2012-01-04','2012-01-05','2012-01-06','2012-01-07','2012-01-08','2012-01-09','2012-01-10','2012-01-11','2012-01-12','2012-01-13','2012-01-14','2012-01-15','2012-01-16','2012-01-17','2012-01-18','2012-01-19','2012-01-20','2012-01-21','2012-01-22','2012-01-23','2012-01-24','2012-01-25','2012-01-26','2012-01-27','2012-01-28','2012-01-29','2012-01-30','2012-01-31','2012-02-01','2012-02-02','2012-02-03','2012-02-04','2012-02-05','2012-02-06','2012-02-07','2012-02-08','2012-02-09','2012-02-10','2012-02-11','2012-02-12','2012-02-13','2012-02-14','2012-02-15','2012-02-16','2012-02-17','2012-02-18','2012-02-19','2012-02-20','2012-02-21','2012-02-22','2012-02-23','2012-02-24','2012-02-25','2012-02-26','2012-02-27','2012-02-28','2012-02-29','2012-03-01','2012-03-02','2012-03-03','2012-03-04','2012-03-05','2012-03-06','2012-03-07','2012-03-08','2012-03-09','2012-03-10','2012-03-11','2012-03-12','2012-03-13','2012-03-14','2012-03-15','2012-03-16','2012-03-17','2012-03-18','2012-03-19','2012-03-20','2012-03-21','2012-03-22','2012-03-23','2012-03-24','2012-03-25','2012-03-26','2012-03-27','2012-03-28','2012-03-29','2012-03-30','2012-03-31','2012-04-01','2012-04-02','2012-04-03','2012-04-04','2012-04-05','2012-04-06','2012-04-07','2012-04-08','2012-04-09','2012-04-10','2012-04-11','2012-04-12','2012-04-13','2012-04-14','2012-04-15','2012-04-16','2012-04-17','2012-04-18','2012-04-19','2012-04-20','2012-04-21','2012-04-22','2012-04-23','2012-04-24','2012-04-25','2012-04-26','2012-04-27','2012-04-28','2012-04-29','2012-04-30','2012-05-01','2012-05-02','2012-05-03','2012-05-04','2012-05-05','2012-05-06','2012-05-07','2012-05-08','2012-05-09','2012-05-10','2012-05-11','2012-05-12','2012-05-13','2012-05-14','2012-05-15','2012-05-16','2012-05-17','2012-05-18','2012-05-19','2012-05-20','2012-05-21','2012-05-22','2012-05-23','2012-05-24','2012-05-25','2012-05-26','2012-05-27','2012-05-28','2012-05-29','2012-05-30','2012-05-31','2012-06-01','2012-06-02','2012-06-03','2012-06-04','2012-06-05','2012-06-06','2012-06-07','2012-06-08','2012-06-09','2012-06-10','2012-06-11','2012-06-12','2012-06-13','2012-06-14','2012-06-15','2012-06-16','2012-06-17','2012-06-18','2012-06-19','2012-06-20','2012-06-21','2012-06-22','2012-06-23','2012-06-24','2012-06-25','2012-06-26','2012-06-27','2012-06-28','2012-06-29','2012-06-30','2012-07-01','2012-07-02','2012-07-03','2012-07-04','2012-07-05','2012-07-06','2012-07-07','2012-07-08','2012-07-09','2012-07-10','2012-07-11','2012-07-12','2012-07-13','2012-07-14','2012-07-15','2012-07-16','2012-07-17','2012-07-18','2012-07-19','2012-07-20','2012-07-21','2012-07-22','2012-07-23','2012-07-24','2012-07-25','2012-07-26','2012-07-27','2012-07-28','2012-07-29','2012-07-30','2012-07-31','2012-08-01','2012-08-02','2012-08-03','2012-08-04','2012-08-05','2012-08-06','2012-08-07','2012-08-08','2012-08-09','2012-08-10','2012-08-11','2012-08-12','2012-08-13','2012-08-14','2012-08-15','2012-08-16','2012-08-17','2012-08-18','2012-08-19','2012-08-20','2012-08-21','2012-08-22','2012-08-23','2012-08-24','2012-08-25','2012-08-26','2012-08-27','2012-08-28','2012-08-29','2012-08-30','2012-08-31','2012-09-01','2012-09-02','2012-09-03','2012-09-04','2012-09-05','2012-09-06','2012-09-07','2012-09-08','2012-09-09','2012-09-10','2012-09-11','2012-09-12','2012-09-13','2012-09-14','2012-09-15','2012-09-16','2012-09-17','2012-09-18','2012-09-19','2012-09-20','2012-09-21','2012-09-22','2012-09-23','2012-09-24','2012-09-25','2012-09-26','2012-09-27','2012-09-28','2012-09-29','2012-09-30','2012-10-01','2012-10-02','2012-10-03','2012-10-04','2012-10-05','2012-10-06','2012-10-07','2012-10-08','2012-10-09','2012-10-10','2012-10-11','2012-10-12','2012-10-13','2012-10-14','2012-10-15','2012-10-16','2012-10-17','2012-10-18','2012-10-19','2012-10-20','2012-10-21','2012-10-22','2012-10-23','2012-10-24','2012-10-25','2012-10-26','2012-10-27','2012-10-28','2012-10-29','2012-10-30','2012-10-31','2012-11-01','2012-11-02','2012-11-03','2012-11-04','2012-11-05','2012-11-06','2012-11-07','2012-11-08','2012-11-09','2012-11-10','2012-11-11','2012-11-12','2012-11-13','2012-11-14','2012-11-15','2012-11-16','2012-11-17','2012-11-18','2012-11-19','2012-11-20','2012-11-21','2012-11-22','2012-11-23','2012-11-24','2012-11-25','2012-11-26','2012-11-27','2012-11-28','2012-11-29','2012-11-30','2012-12-01','2012-12-02','2012-12-03','2012-12-04','2012-12-05','2012-12-06','2012-12-07','2012-12-08','2012-12-09','2012-12-10','2012-12-11','2012-12-12','2012-12-13','2012-12-14','2012-12-15','2012-12-16','2012-12-17','2012-12-18','2012-12-19','2012-12-20','2012-12-21','2012-12-22','2012-12-23','2012-12-24','2012-12-25','2012-12-26','2012-12-27','2012-12-28','2012-12-29','2012-12-30','2012-12-31','2013-01-01','2013-01-02','2013-01-03','2013-01-04','2013-01-05','2013-01-06','2013-01-07','2013-01-08','2013-01-09','2013-01-10','2013-01-11','2013-01-12','2013-01-13','2013-01-14','2013-01-15','2013-01-16','2013-01-17','2013-01-18','2013-01-19','2013-01-20','2013-01-21'))[0m
|
2201
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_events` (`by_day_of_month`, `calendar_event_type_id`, `calendar_id`, `desc`, `end_date`, `end_time`, `long_desc`, `start_date`, `start_time`) VALUES (0, 6, 30, 'some event description', '2013-01-21 22:01:50', NULL, NULL, '2011-12-21 22:01:50', NULL)
|
2202
|
+
[1m[36mCalendarEventType Load (0.2ms)[0m [1mSELECT `calendar_event_types`.* FROM `calendar_event_types` WHERE `calendar_event_types`.`id` = 6 LIMIT 1[0m
|
2203
|
+
[1m[35mCalendarRecurrence Load (0.7ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 0 LIMIT 1
|
2204
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 1 LIMIT 1[0m
|
2205
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 2 LIMIT 1
|
2206
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 3 LIMIT 1[0m
|
2207
|
+
[1m[35mCalendarRecurrence Load (0.5ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 4 LIMIT 1
|
2208
|
+
[1m[36mCalendarRecurrence Load (0.5ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 5 LIMIT 1[0m
|
2209
|
+
[1m[35m (85.7ms)[0m COMMIT
|
2210
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2211
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 9, 1, '2011-04-09', 6)
|
2212
|
+
[1m[36mCalendarRecurrence Load (4.9ms)[0m [1mSELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29 AND `calendar_recurrences`.`weekday` = 6 LIMIT 1[0m
|
2213
|
+
[1m[35mCalendarRecurrence Load (0.4ms)[0m SELECT `calendar_recurrences`.* FROM `calendar_recurrences` WHERE `calendar_recurrences`.`calendar_event_id` = 29
|
2214
|
+
[1m[36mCalendarEvent Load (0.5ms)[0m [1mSELECT `calendar_events`.* FROM `calendar_events` WHERE `calendar_events`.`id` = 29 LIMIT 1[0m
|
2215
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `calendar_recurrences` (`calendar_event_id`, `month`, `monthday`, `monthweek`, `weekday`) VALUES (29, 12, 21, 2, 3)
|
2216
|
+
[1m[36m (40.9ms)[0m [1mCOMMIT[0m
|
2217
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2218
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 10, 1, '2011-04-10', 0)[0m
|
2219
|
+
[1m[35m (76.0ms)[0m COMMIT
|
2220
|
+
[1m[36m (84.0ms)[0m [1mCOMMIT[0m
|
2221
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2222
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO `calendar_dates` (`lastweek`, `month`, `monthday`, `monthweek`, `value`, `weekday`) VALUES (0, 4, 11, 1, '2011-04-11', 1)[0m
|
2223
|
+
[1m[35mCalendarDate Load (55.5ms)[0m SELECT `calendar_dates`.* FROM `calendar_dates` INNER JOIN `calendar_event_dates` ON `calendar_dates`.`id` = `calendar_event_dates`.`calendar_date_id` WHERE `calendar_event_dates`.`calendar_event_id` = 29
|
2224
|
+
[1m[36m (12.9ms)[0m [1mCOMMIT[0m
|