rails_wordpress 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,1345 +0,0 @@
1
- ActiveRecord::SchemaMigration Load (91.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
2
-  (442.5ms) DROP DATABASE IF EXISTS `wp_test`
3
-  (8.1ms) CREATE DATABASE `wp_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
4
-  (21.7ms) CREATE TABLE `wp_commentmeta` (`meta_id` int(11) auto_increment PRIMARY KEY, `comment_id` bigint DEFAULT 0 NOT NULL, `meta_key` varchar(255), `meta_value` longtext) ENGINE=InnoDB
5
-  (24.4ms) CREATE INDEX `comment_id` USING btree ON `wp_commentmeta` (`comment_id`)
6
-  (16.6ms) CREATE INDEX `meta_key` USING btree ON `wp_commentmeta` (`meta_key`) 
7
-  (15.0ms) CREATE TABLE `wp_comments` (`comment_ID` int(11) auto_increment PRIMARY KEY, `comment_post_ID` bigint DEFAULT 0 NOT NULL, `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) DEFAULT '' NOT NULL, `comment_author_url` varchar(200) DEFAULT '' NOT NULL, `comment_author_IP` varchar(100) DEFAULT '' NOT NULL, `comment_date` datetime NOT NULL, `comment_date_gmt` datetime NOT NULL, `comment_content` text NOT NULL, `comment_karma` int(11) DEFAULT 0 NOT NULL, `comment_approved` varchar(20) DEFAULT '1' NOT NULL, `comment_agent` varchar(255) DEFAULT '' NOT NULL, `comment_type` varchar(20) DEFAULT '' NOT NULL, `comment_parent` bigint DEFAULT 0 NOT NULL, `user_id` bigint DEFAULT 0 NOT NULL) ENGINE=InnoDB
8
-  (13.6ms) CREATE INDEX `comment_approved_date_gmt` USING btree ON `wp_comments` (`comment_approved`, `comment_date_gmt`) 
9
-  (13.2ms) CREATE INDEX `comment_author_email` USING btree ON `wp_comments` (`comment_author_email`(10))
10
-  (13.0ms) CREATE INDEX `comment_date_gmt` USING btree ON `wp_comments` (`comment_date_gmt`) 
11
-  (16.8ms) CREATE INDEX `comment_parent` USING btree ON `wp_comments` (`comment_parent`)
12
-  (17.6ms) CREATE INDEX `comment_post_ID` USING btree ON `wp_comments` (`comment_post_ID`) 
13
-  (19.8ms) CREATE TABLE `wp_links` (`link_id` int(11) auto_increment PRIMARY KEY, `link_url` varchar(255) DEFAULT '' NOT NULL, `link_name` varchar(255) DEFAULT '' NOT NULL, `link_image` varchar(255) DEFAULT '' NOT NULL, `link_target` varchar(25) DEFAULT '' NOT NULL, `link_description` varchar(255) DEFAULT '' NOT NULL, `link_visible` varchar(20) DEFAULT 'Y' NOT NULL, `link_owner` bigint DEFAULT 1 NOT NULL, `link_rating` int(11) DEFAULT 0 NOT NULL, `link_updated` datetime NOT NULL, `link_rel` varchar(255) DEFAULT '' NOT NULL, `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) DEFAULT '' NOT NULL) ENGINE=InnoDB
14
-  (16.9ms) CREATE INDEX `link_visible` USING btree ON `wp_links` (`link_visible`) 
15
-  (85.8ms) CREATE TABLE `wp_options` (`option_id` int(11) auto_increment PRIMARY KEY, `option_name` varchar(64) DEFAULT '' NOT NULL, `option_value` longtext NOT NULL, `autoload` varchar(20) DEFAULT 'yes' NOT NULL) ENGINE=InnoDB
16
-  (15.6ms) CREATE UNIQUE INDEX `option_name` USING btree ON `wp_options` (`option_name`) 
17
-  (16.9ms) CREATE TABLE `wp_postmeta` (`meta_id` int(11) auto_increment PRIMARY KEY, `post_id` bigint DEFAULT 0 NOT NULL, `meta_key` varchar(255), `meta_value` longtext) ENGINE=InnoDB
18
-  (14.2ms) CREATE INDEX `meta_key` USING btree ON `wp_postmeta` (`meta_key`) 
19
-  (19.3ms) CREATE INDEX `post_id` USING btree ON `wp_postmeta` (`post_id`)
20
-  (22.4ms) CREATE TABLE `wp_posts` (`ID` int(11) auto_increment PRIMARY KEY, `post_author` bigint DEFAULT 0 NOT NULL, `post_date` datetime NOT NULL, `post_date_gmt` datetime NOT NULL, `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_excerpt` text NOT NULL, `post_status` varchar(20) DEFAULT 'publish' NOT NULL, `comment_status` varchar(20) DEFAULT 'open' NOT NULL, `ping_status` varchar(20) DEFAULT 'open' NOT NULL, `post_password` varchar(20) DEFAULT '' NOT NULL, `post_name` varchar(200) DEFAULT '' NOT NULL, `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL, `post_modified_gmt` datetime NOT NULL, `post_content_filtered` longtext NOT NULL, `post_parent` bigint DEFAULT 0 NOT NULL, `guid` varchar(255) DEFAULT '' NOT NULL, `menu_order` int(11) DEFAULT 0 NOT NULL, `post_type` varchar(20) DEFAULT 'post' NOT NULL, `post_mime_type` varchar(100) DEFAULT '' NOT NULL, `comment_count` bigint DEFAULT 0 NOT NULL) ENGINE=InnoDB
21
-  (14.0ms) CREATE INDEX `post_author` USING btree ON `wp_posts` (`post_author`)
22
-  (19.8ms) CREATE INDEX `post_name` USING btree ON `wp_posts` (`post_name`) 
23
-  (14.2ms) CREATE INDEX `post_parent` USING btree ON `wp_posts` (`post_parent`)
24
-  (16.5ms) CREATE INDEX `type_status_date` USING btree ON `wp_posts` (`post_type`, `post_status`, `post_date`, `ID`) 
25
-  (13.7ms) CREATE TABLE `wp_term_relationships` (`object_id` bigint DEFAULT 0 NOT NULL, `term_taxonomy_id` bigint DEFAULT 0 NOT NULL, `term_order` int(11) DEFAULT 0 NOT NULL) ENGINE=InnoDB
26
-  (13.2ms) CREATE INDEX `term_taxonomy_id` USING btree ON `wp_term_relationships` (`term_taxonomy_id`) 
27
-  (17.5ms) CREATE TABLE `wp_term_taxonomy` (`term_taxonomy_id` int(11) auto_increment PRIMARY KEY, `term_id` bigint DEFAULT 0 NOT NULL, `taxonomy` varchar(32) DEFAULT '' NOT NULL, `description` longtext NOT NULL, `parent` bigint DEFAULT 0 NOT NULL, `count` bigint DEFAULT 0 NOT NULL) ENGINE=InnoDB
28
-  (15.0ms) CREATE INDEX `taxonomy` USING btree ON `wp_term_taxonomy` (`taxonomy`) 
29
-  (15.3ms) CREATE UNIQUE INDEX `term_id_taxonomy` USING btree ON `wp_term_taxonomy` (`term_id`, `taxonomy`)
30
-  (16.9ms) CREATE TABLE `wp_terms` (`term_id` int(11) auto_increment PRIMARY KEY, `name` varchar(200) DEFAULT '' NOT NULL, `slug` varchar(200) DEFAULT '' NOT NULL, `term_group` bigint DEFAULT 0 NOT NULL) ENGINE=InnoDB
31
-  (13.7ms) CREATE INDEX `name` USING btree ON `wp_terms` (`name`)
32
-  (14.1ms) CREATE UNIQUE INDEX `slug` USING btree ON `wp_terms` (`slug`) 
33
-  (14.3ms) CREATE TABLE `wp_usermeta` (`umeta_id` int(11) auto_increment PRIMARY KEY, `user_id` bigint DEFAULT 0 NOT NULL, `meta_key` varchar(255), `meta_value` longtext) ENGINE=InnoDB
34
-  (39.0ms) CREATE INDEX `meta_key` USING btree ON `wp_usermeta` (`meta_key`) 
35
-  (16.4ms) CREATE INDEX `user_id` USING btree ON `wp_usermeta` (`user_id`)
36
-  (18.3ms) CREATE TABLE `wp_users` (`ID` int(11) auto_increment PRIMARY KEY, `user_login` varchar(60) DEFAULT '' NOT NULL, `user_pass` varchar(64) DEFAULT '' NOT NULL, `user_nicename` varchar(50) DEFAULT '' NOT NULL, `user_email` varchar(100) DEFAULT '' NOT NULL, `user_url` varchar(100) DEFAULT '' NOT NULL, `user_registered` datetime NOT NULL, `user_activation_key` varchar(60) DEFAULT '' NOT NULL, `user_status` int(11) DEFAULT 0 NOT NULL, `display_name` varchar(250) DEFAULT '' NOT NULL) ENGINE=InnoDB
37
-  (16.0ms) CREATE INDEX `user_login_key` USING btree ON `wp_users` (`user_login`)
38
-  (14.7ms) CREATE INDEX `user_nicename` USING btree ON `wp_users` (`user_nicename`) 
39
-  (17.5ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
40
-  (29.8ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
41
-  (0.3ms) SELECT version FROM `schema_migrations`
42
-  (5.8ms) INSERT INTO `schema_migrations` (version) VALUES ('0')
43
- ActiveRecord::SchemaMigration Load (1.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
44
-  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
45
-  (10.8ms) SET FOREIGN_KEY_CHECKS = 0
46
-  (148.3ms) SELECT 1 FROM information_schema.tables
47
-  (0.8ms) SELECT CONCAT('SELECT "', table_name, '" AS table_name, COUNT(*) AS exact_row_count FROM ', table_name)
48
- FROM
49
- INFORMATION_SCHEMA.TABLES
50
- WHERE
51
- table_schema = 'wp_test'
52
- AND table_name <> 'schema_migrations';
53
-
54
- SQL (3.7ms) SELECT "wp_commentmeta" AS table_name, COUNT(*) AS exact_row_count FROM wp_commentmeta UNION SELECT "wp_comments" AS table_name, COUNT(*) AS exact_row_count FROM wp_comments UNION SELECT "wp_links" AS table_name, COUNT(*) AS exact_row_count FROM wp_links UNION SELECT "wp_options" AS table_name, COUNT(*) AS exact_row_count FROM wp_options UNION SELECT "wp_postmeta" AS table_name, COUNT(*) AS exact_row_count FROM wp_postmeta UNION SELECT "wp_posts" AS table_name, COUNT(*) AS exact_row_count FROM wp_posts UNION SELECT "wp_term_relationships" AS table_name, COUNT(*) AS exact_row_count FROM wp_term_relationships UNION SELECT "wp_term_taxonomy" AS table_name, COUNT(*) AS exact_row_count FROM wp_term_taxonomy UNION SELECT "wp_terms" AS table_name, COUNT(*) AS exact_row_count FROM wp_terms UNION SELECT "wp_usermeta" AS table_name, COUNT(*) AS exact_row_count FROM wp_usermeta UNION SELECT "wp_users" AS table_name, COUNT(*) AS exact_row_count FROM wp_users
55
-  (0.8ms) SET FOREIGN_KEY_CHECKS = 1
56
-  (0.1ms) BEGIN
57
-  (0.1ms) COMMIT
58
-  (0.1ms) BEGIN
59
-  (0.1ms) SAVEPOINT active_record_1
60
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
61
-  (0.1ms) RELEASE SAVEPOINT active_record_1
62
-  (0.1ms) SAVEPOINT active_record_1
63
- Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
64
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
65
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 1, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'test', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
66
-  (0.1ms) RELEASE SAVEPOINT active_record_1
67
-  (0.1ms) SAVEPOINT active_record_1
68
- SQL (0.2ms) INSERT INTO `wp_postmeta` (`meta_key`, `meta_value`, `post_id`) VALUES ('foo', 'TEST', 1)
69
-  (0.1ms) RELEASE SAVEPOINT active_record_1
70
- Wordpress::Postmeta Load (0.5ms) SELECT `wp_postmeta`.* FROM `wp_postmeta` WHERE `wp_postmeta`.`post_id` = 1
71
-  (6.5ms) ROLLBACK
72
-  (0.2ms) BEGIN
73
-  (0.2ms) COMMIT
74
-  (0.1ms) BEGIN
75
-  (0.1ms) SAVEPOINT active_record_1
76
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
77
-  (0.2ms) RELEASE SAVEPOINT active_record_1
78
-  (10.0ms) ROLLBACK
79
-  (0.1ms) BEGIN
80
-  (0.1ms) COMMIT
81
-  (0.1ms) BEGIN
82
-  (0.1ms) SAVEPOINT active_record_1
83
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
84
-  (0.1ms) RELEASE SAVEPOINT active_record_1
85
-  (0.1ms) SAVEPOINT active_record_1
86
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
87
-  (0.1ms) RELEASE SAVEPOINT active_record_1
88
-  (0.1ms) SAVEPOINT active_record_1
89
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
90
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
91
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 3, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'test', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
92
-  (0.1ms) RELEASE SAVEPOINT active_record_1
93
-  (0.1ms) SAVEPOINT active_record_1
94
- SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
95
-  (0.1ms) RELEASE SAVEPOINT active_record_1
96
-  (0.1ms) SAVEPOINT active_record_1
97
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
98
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
99
- SQL (0.1ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 3, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'test', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
100
-  (0.1ms) RELEASE SAVEPOINT active_record_1
101
- Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`post_author` = 3
102
-  (0.4ms) ROLLBACK
103
-  (0.1ms) BEGIN
104
-  (0.1ms) COMMIT
105
-  (0.1ms) BEGIN
106
-  (0.1ms) SAVEPOINT active_record_1
107
- SQL (1.4ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
108
-  (0.1ms) RELEASE SAVEPOINT active_record_1
109
-  (0.1ms) SAVEPOINT active_record_1
110
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
111
-  (0.1ms) RELEASE SAVEPOINT active_record_1
112
-  (0.1ms) SAVEPOINT active_record_1
113
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
114
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
115
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 6, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'test', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
116
-  (0.1ms) RELEASE SAVEPOINT active_record_1
117
-  (0.4ms) ROLLBACK
118
-  (0.1ms) BEGIN
119
-  (0.1ms) COMMIT
120
-  (0.1ms) BEGIN
121
-  (0.1ms) SAVEPOINT active_record_1
122
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
123
-  (0.1ms) RELEASE SAVEPOINT active_record_1
124
-  (0.1ms) SAVEPOINT active_record_1
125
- Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
126
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
127
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '', 8, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'test', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
128
-  (0.1ms) RELEASE SAVEPOINT active_record_1
129
-  (0.5ms) ROLLBACK
130
-  (0.1ms) BEGIN
131
-  (0.1ms) COMMIT
132
-  (0.1ms) BEGIN
133
-  (0.2ms) SAVEPOINT active_record_1
134
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
135
-  (0.1ms) RELEASE SAVEPOINT active_record_1
136
-  (0.1ms) SAVEPOINT active_record_1
137
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
138
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
139
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('page', 'Page', 'Coming Soon!', '', '', '', '', 9, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'page', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
140
-  (0.1ms) RELEASE SAVEPOINT active_record_1
141
-  (0.5ms) ROLLBACK
142
-  (0.1ms) BEGIN
143
-  (0.1ms) COMMIT
144
-  (0.1ms) BEGIN
145
-  (0.1ms) SAVEPOINT active_record_1
146
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
147
-  (0.1ms) RELEASE SAVEPOINT active_record_1
148
-  (0.1ms) SAVEPOINT active_record_1
149
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
150
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
151
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('page', 'Page', 'Coming Soon!', '', '', '', '', 10, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'page', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
152
-  (0.1ms) RELEASE SAVEPOINT active_record_1
153
- Wordpress::PostTag Load (0.4ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_terms`.`name` = 'foo' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
154
-  (0.1ms) SAVEPOINT active_record_1
155
- Wordpress::Term Exists (0.4ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
156
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
157
-  (0.1ms) RELEASE SAVEPOINT active_record_1
158
-  (0.2ms) SAVEPOINT active_record_1
159
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 1, '')
160
-  (0.1ms) RELEASE SAVEPOINT active_record_1
161
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_terms`.`name` = 'bar' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
162
-  (0.1ms) SAVEPOINT active_record_1
163
- Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
164
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
165
-  (0.1ms) RELEASE SAVEPOINT active_record_1
166
-  (0.1ms) SAVEPOINT active_record_1
167
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 2, '')
168
-  (0.1ms) RELEASE SAVEPOINT active_record_1
169
- Wordpress::PostTag Exists (2.1ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 7 AND `wp_term_taxonomy`.`term_taxonomy_id` = 1 LIMIT 1
170
- Wordpress::PostTag Exists (0.3ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 7 AND `wp_term_taxonomy`.`term_taxonomy_id` = 2 LIMIT 1
171
- Wordpress::PostTag Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 7
172
-  (0.1ms) SAVEPOINT active_record_1
173
- SQL (0.3ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:37', `post_modified_gmt` = '2017-07-03 14:38:37' WHERE `wp_posts`.`ID` = 7
174
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (1, 7)
175
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 1
176
- SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (2, 7)
177
- SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 2
178
-  (0.1ms) RELEASE SAVEPOINT active_record_1
179
-  (0.3ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 7
180
-  (1.6ms) ROLLBACK
181
-  (0.1ms) BEGIN
182
-  (0.1ms) COMMIT
183
-  (0.1ms) BEGIN
184
-  (0.1ms) SAVEPOINT active_record_1
185
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
186
-  (0.1ms) RELEASE SAVEPOINT active_record_1
187
-  (0.1ms) SAVEPOINT active_record_1
188
- Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
189
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
190
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('page', 'Page', 'Coming Soon!', '', '', '', '', 11, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'page', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
191
-  (0.1ms) RELEASE SAVEPOINT active_record_1
192
-  (0.1ms) SAVEPOINT active_record_1
193
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
194
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo12', 'foo12')
195
-  (0.1ms) RELEASE SAVEPOINT active_record_1
196
-  (0.1ms) SAVEPOINT active_record_1
197
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo12', 3)
198
-  (0.1ms) RELEASE SAVEPOINT active_record_1
199
-  (0.1ms) SAVEPOINT active_record_1
200
- SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (8, 3)
201
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 3
202
-  (0.1ms) RELEASE SAVEPOINT active_record_1
203
-  (0.3ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 8
204
-  (0.2ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 8
205
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 8 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
206
-  (0.5ms) ROLLBACK
207
-  (0.1ms) BEGIN
208
-  (0.1ms) COMMIT
209
-  (0.1ms) BEGIN
210
-  (0.1ms) SAVEPOINT active_record_1
211
- SQL (0.3ms) INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES ('Hello', 'World', 'no')
212
-  (0.1ms) RELEASE SAVEPOINT active_record_1
213
-  (0.4ms) ROLLBACK
214
-  (0.1ms) BEGIN
215
-  (0.1ms) COMMIT
216
-  (0.1ms) BEGIN
217
-  (0.1ms) SAVEPOINT active_record_1
218
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
219
-  (0.1ms) RELEASE SAVEPOINT active_record_1
220
-  (0.1ms) SAVEPOINT active_record_1
221
- Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
222
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
223
- SQL (1.3ms) INSERT INTO `wp_posts` (`post_type`, `post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('attachment', 'Attachment', '', '', '', '', '\'', 12, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'attachment', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
224
-  (0.1ms) RELEASE SAVEPOINT active_record_1
225
-  (0.3ms) ROLLBACK
226
-  (0.1ms) BEGIN
227
-  (0.1ms) COMMIT
228
-  (0.1ms) BEGIN
229
-  (0.1ms) SAVEPOINT active_record_1
230
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
231
-  (0.1ms) RELEASE SAVEPOINT active_record_1
232
-  (0.1ms) SAVEPOINT active_record_1
233
- Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
234
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
235
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('attachment', 'Attachment', '', '', '', '', '\'', 13, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'attachment', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
236
-  (0.1ms) RELEASE SAVEPOINT active_record_1
237
-  (0.1ms) SAVEPOINT active_record_1
238
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
239
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo8', 'foo8')
240
-  (0.1ms) RELEASE SAVEPOINT active_record_1
241
-  (0.1ms) SAVEPOINT active_record_1
242
- SQL (0.3ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo8', 4)
243
-  (0.1ms) RELEASE SAVEPOINT active_record_1
244
-  (0.1ms) SAVEPOINT active_record_1
245
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (10, 4)
246
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 4
247
-  (0.1ms) RELEASE SAVEPOINT active_record_1
248
-  (0.2ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 10
249
-  (0.2ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 10
250
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 10 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
251
-  (0.3ms) ROLLBACK
252
-  (0.1ms) BEGIN
253
-  (0.1ms) COMMIT
254
-  (0.1ms) BEGIN
255
-  (0.1ms) SAVEPOINT active_record_1
256
- SQL (1.5ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
257
-  (0.1ms) RELEASE SAVEPOINT active_record_1
258
-  (0.1ms) SAVEPOINT active_record_1
259
- Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
260
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
261
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('attachment', 'Attachment', '', '', '', '', '\'', 14, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'attachment', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
262
-  (0.1ms) RELEASE SAVEPOINT active_record_1
263
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_terms`.`name` = 'foo' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
264
-  (0.1ms) SAVEPOINT active_record_1
265
- Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
266
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
267
-  (0.1ms) RELEASE SAVEPOINT active_record_1
268
-  (0.1ms) SAVEPOINT active_record_1
269
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 5, '')
270
-  (0.1ms) RELEASE SAVEPOINT active_record_1
271
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_terms`.`name` = 'bar' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
272
-  (0.1ms) SAVEPOINT active_record_1
273
- Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
274
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
275
-  (0.1ms) RELEASE SAVEPOINT active_record_1
276
-  (0.1ms) SAVEPOINT active_record_1
277
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 6, '')
278
-  (0.1ms) RELEASE SAVEPOINT active_record_1
279
- Wordpress::PostTag Exists (0.4ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 11 AND `wp_term_taxonomy`.`term_taxonomy_id` = 5 LIMIT 1
280
- Wordpress::PostTag Exists (0.2ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 11 AND `wp_term_taxonomy`.`term_taxonomy_id` = 6 LIMIT 1
281
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 11
282
-  (0.1ms) SAVEPOINT active_record_1
283
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:37', `post_modified_gmt` = '2017-07-03 14:38:37' WHERE `wp_posts`.`ID` = 11
284
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (5, 11)
285
- SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 5
286
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (6, 11)
287
- SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 6
288
-  (0.1ms) RELEASE SAVEPOINT active_record_1
289
-  (0.2ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 11
290
-  (0.4ms) ROLLBACK
291
-  (0.1ms) BEGIN
292
-  (0.1ms) COMMIT
293
-  (0.1ms) BEGIN
294
-  (0.1ms) SAVEPOINT active_record_1
295
- SQL (2.4ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
296
-  (0.1ms) RELEASE SAVEPOINT active_record_1
297
-  (0.1ms) SAVEPOINT active_record_1
298
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
299
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
300
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('attachment', 'Attachment', '', '', '', '', '\'', 15, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'attachment', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
301
-  (0.1ms) RELEASE SAVEPOINT active_record_1
302
-  (0.2ms) SAVEPOINT active_record_1
303
- Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
304
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
305
-  (0.1ms) RELEASE SAVEPOINT active_record_1
306
-  (0.1ms) SAVEPOINT active_record_1
307
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 7)
308
-  (0.1ms) RELEASE SAVEPOINT active_record_1
309
-  (0.1ms) SAVEPOINT active_record_1
310
- SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (12, 7)
311
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 7
312
-  (0.1ms) RELEASE SAVEPOINT active_record_1
313
- Wordpress::Attachment Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('attachment') AND `wp_posts`.`ID` = 12 LIMIT 1
314
-  (0.2ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 12
315
- Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 12 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
316
- Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 12 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
317
-  (0.5ms) ROLLBACK
318
-  (0.2ms) BEGIN
319
-  (0.1ms) COMMIT
320
-  (0.1ms) BEGIN
321
-  (0.1ms) SAVEPOINT active_record_1
322
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
323
-  (0.1ms) RELEASE SAVEPOINT active_record_1
324
-  (0.1ms) SAVEPOINT active_record_1
325
- Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
326
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
327
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 16, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'test', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
328
-  (0.1ms) RELEASE SAVEPOINT active_record_1
329
-  (0.4ms) ROLLBACK
330
-  (0.2ms) BEGIN
331
-  (0.1ms) COMMIT
332
-  (0.1ms) BEGIN
333
-  (0.1ms) SAVEPOINT active_record_1
334
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
335
-  (0.1ms) RELEASE SAVEPOINT active_record_1
336
-  (0.1ms) SAVEPOINT active_record_1
337
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
338
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
339
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 17, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'test', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
340
-  (0.1ms) RELEASE SAVEPOINT active_record_1
341
- Wordpress::PostTag Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_terms`.`name` = 'foo' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
342
-  (0.1ms) SAVEPOINT active_record_1
343
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
344
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
345
-  (0.1ms) RELEASE SAVEPOINT active_record_1
346
-  (0.1ms) SAVEPOINT active_record_1
347
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 8, '')
348
-  (0.1ms) RELEASE SAVEPOINT active_record_1
349
- Wordpress::PostTag Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_terms`.`name` = 'bar' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
350
-  (0.1ms) SAVEPOINT active_record_1
351
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
352
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
353
-  (0.1ms) RELEASE SAVEPOINT active_record_1
354
-  (0.1ms) SAVEPOINT active_record_1
355
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 9, '')
356
-  (0.1ms) RELEASE SAVEPOINT active_record_1
357
- Wordpress::PostTag Exists (0.4ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 14 AND `wp_term_taxonomy`.`term_taxonomy_id` = 8 LIMIT 1
358
- Wordpress::PostTag Exists (0.2ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 14 AND `wp_term_taxonomy`.`term_taxonomy_id` = 9 LIMIT 1
359
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 14
360
-  (0.1ms) SAVEPOINT active_record_1
361
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:37', `post_modified_gmt` = '2017-07-03 14:38:37' WHERE `wp_posts`.`ID` = 14
362
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (8, 14)
363
- SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 8
364
- SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (9, 14)
365
- SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 9
366
-  (0.1ms) RELEASE SAVEPOINT active_record_1
367
-  (0.2ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 14
368
-  (0.4ms) ROLLBACK
369
-  (0.1ms) BEGIN
370
-  (0.1ms) COMMIT
371
-  (0.1ms) BEGIN
372
-  (0.1ms) SAVEPOINT active_record_1
373
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
374
-  (0.1ms) RELEASE SAVEPOINT active_record_1
375
-  (0.1ms) SAVEPOINT active_record_1
376
- Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
377
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
378
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 18, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'test', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
379
-  (0.1ms) RELEASE SAVEPOINT active_record_1
380
-  (0.1ms) SAVEPOINT active_record_1
381
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
382
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo13', 'foo13')
383
-  (0.1ms) RELEASE SAVEPOINT active_record_1
384
-  (0.1ms) SAVEPOINT active_record_1
385
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo13', 10)
386
-  (0.1ms) RELEASE SAVEPOINT active_record_1
387
-  (0.1ms) SAVEPOINT active_record_1
388
- SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (15, 10)
389
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 10
390
-  (0.1ms) RELEASE SAVEPOINT active_record_1
391
-  (0.2ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 15
392
-  (0.1ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 15
393
- Wordpress::PostTag Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 15 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
394
-  (0.5ms) ROLLBACK
395
-  (0.1ms) BEGIN
396
-  (0.1ms) COMMIT
397
-  (0.1ms) BEGIN
398
-  (0.1ms) SAVEPOINT active_record_1
399
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
400
-  (0.1ms) RELEASE SAVEPOINT active_record_1
401
-  (0.1ms) SAVEPOINT active_record_1
402
- Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
403
- Wordpress::User Load (0.3ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
404
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 19, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'test', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
405
-  (0.1ms) RELEASE SAVEPOINT active_record_1
406
-  (0.1ms) SAVEPOINT active_record_1
407
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
408
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
409
-  (0.1ms) RELEASE SAVEPOINT active_record_1
410
-  (0.1ms) SAVEPOINT active_record_1
411
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 11)
412
-  (0.1ms) RELEASE SAVEPOINT active_record_1
413
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 11 LIMIT 1
414
- Wordpress::Category Exists (0.4ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 16 AND `wp_term_taxonomy`.`term_taxonomy_id` = 11 LIMIT 1
415
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 16
416
-  (0.1ms) SAVEPOINT active_record_1
417
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:37', `post_modified_gmt` = '2017-07-03 14:38:37' WHERE `wp_posts`.`ID` = 16
418
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (11, 16)
419
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 11
420
-  (0.1ms) RELEASE SAVEPOINT active_record_1
421
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 16
422
-  (0.5ms) ROLLBACK
423
-  (0.1ms) BEGIN
424
-  (0.1ms) COMMIT
425
-  (0.1ms) BEGIN
426
-  (0.1ms) SAVEPOINT active_record_1
427
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
428
-  (0.1ms) RELEASE SAVEPOINT active_record_1
429
-  (0.1ms) SAVEPOINT active_record_1
430
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
431
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
432
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 20, '2017-07-03 14:38:37', '2017-07-03 14:38:37', 'test', '2017-07-03 14:38:37', '2017-07-03 14:38:37')
433
-  (0.1ms) RELEASE SAVEPOINT active_record_1
434
-  (0.2ms) SAVEPOINT active_record_1
435
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
436
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
437
-  (0.1ms) RELEASE SAVEPOINT active_record_1
438
-  (0.1ms) SAVEPOINT active_record_1
439
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 12)
440
-  (0.1ms) RELEASE SAVEPOINT active_record_1
441
- Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 12 LIMIT 1
442
- Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 0 AND `wp_terms`.`name` = 'Foobar' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
443
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 12 LIMIT 1
444
- Wordpress::Category Exists (0.3ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 17 AND `wp_term_taxonomy`.`term_taxonomy_id` = 12 LIMIT 1
445
- Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 17
446
-  (0.1ms) SAVEPOINT active_record_1
447
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:37', `post_modified_gmt` = '2017-07-03 14:38:37' WHERE `wp_posts`.`ID` = 17
448
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (12, 17)
449
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 12
450
-  (0.1ms) RELEASE SAVEPOINT active_record_1
451
- Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 17
452
-  (6.2ms) ROLLBACK
453
-  (0.1ms) BEGIN
454
-  (0.1ms) COMMIT
455
-  (0.1ms) BEGIN
456
-  (0.1ms) SAVEPOINT active_record_1
457
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:37', 'ACTIVATIONKEY', 'DISPLAY NAME')
458
-  (0.1ms) RELEASE SAVEPOINT active_record_1
459
-  (0.1ms) SAVEPOINT active_record_1
460
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
461
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
462
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 21, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
463
-  (0.1ms) RELEASE SAVEPOINT active_record_1
464
-  (0.1ms) SAVEPOINT active_record_1
465
- Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
466
- SQL (0.3ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
467
-  (0.1ms) RELEASE SAVEPOINT active_record_1
468
-  (0.1ms) SAVEPOINT active_record_1
469
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 13)
470
-  (0.1ms) RELEASE SAVEPOINT active_record_1
471
- Wordpress::Term Load (0.3ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 13 LIMIT 1
472
- Wordpress::Category Load (12.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 0 AND `wp_terms`.`name` = 'Foobar' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
473
- Wordpress::Category Load (0.4ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 13 LIMIT 1
474
- Wordpress::Category Exists (0.5ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 18 AND `wp_term_taxonomy`.`term_taxonomy_id` = 13 LIMIT 1
475
- Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 18
476
-  (0.1ms) SAVEPOINT active_record_1
477
- SQL (0.4ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 18
478
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (13, 18)
479
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 13
480
-  (0.1ms) RELEASE SAVEPOINT active_record_1
481
- Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 18
482
-  (0.4ms) ROLLBACK
483
-  (0.1ms) BEGIN
484
-  (0.1ms) COMMIT
485
-  (0.1ms) BEGIN
486
-  (0.1ms) SAVEPOINT active_record_1
487
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
488
-  (0.1ms) RELEASE SAVEPOINT active_record_1
489
-  (0.1ms) SAVEPOINT active_record_1
490
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
491
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
492
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 22, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
493
-  (0.1ms) RELEASE SAVEPOINT active_record_1
494
-  (0.1ms) SAVEPOINT active_record_1
495
- Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
496
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
497
-  (0.1ms) RELEASE SAVEPOINT active_record_1
498
-  (0.1ms) SAVEPOINT active_record_1
499
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 14)
500
-  (0.1ms) RELEASE SAVEPOINT active_record_1
501
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 14 LIMIT 1
502
- Wordpress::Category Exists (0.3ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 19 AND `wp_term_taxonomy`.`term_taxonomy_id` = 14 LIMIT 1
503
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 19
504
-  (0.1ms) SAVEPOINT active_record_1
505
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 19
506
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (14, 19)
507
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 14
508
-  (0.1ms) RELEASE SAVEPOINT active_record_1
509
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 19
510
-  (0.5ms) ROLLBACK
511
-  (0.2ms) BEGIN
512
-  (0.1ms) COMMIT
513
-  (0.1ms) BEGIN
514
-  (0.1ms) SAVEPOINT active_record_1
515
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
516
-  (0.1ms) RELEASE SAVEPOINT active_record_1
517
-  (0.1ms) SAVEPOINT active_record_1
518
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
519
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
520
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 23, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
521
-  (0.1ms) RELEASE SAVEPOINT active_record_1
522
-  (0.1ms) SAVEPOINT active_record_1
523
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
524
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
525
-  (0.1ms) RELEASE SAVEPOINT active_record_1
526
-  (0.1ms) SAVEPOINT active_record_1
527
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 15)
528
-  (0.1ms) RELEASE SAVEPOINT active_record_1
529
-  (0.1ms) SAVEPOINT active_record_1
530
- SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (20, 15)
531
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 15
532
-  (0.1ms) RELEASE SAVEPOINT active_record_1
533
-  (0.1ms) SAVEPOINT active_record_1
534
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 20
535
-  (0.1ms) RELEASE SAVEPOINT active_record_1
536
- Wordpress::Category Exists (0.3ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 20 AND `wp_term_taxonomy`.`term_taxonomy_id` = 15 LIMIT 1
537
-  (6.0ms) ROLLBACK
538
-  (0.1ms) BEGIN
539
-  (0.1ms) COMMIT
540
-  (0.1ms) BEGIN
541
-  (0.1ms) SAVEPOINT active_record_1
542
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
543
-  (0.1ms) RELEASE SAVEPOINT active_record_1
544
-  (0.1ms) SAVEPOINT active_record_1
545
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
546
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
547
- SQL (0.3ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 24, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
548
-  (0.2ms) RELEASE SAVEPOINT active_record_1
549
-  (0.1ms) SAVEPOINT active_record_1
550
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
551
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
552
-  (0.1ms) RELEASE SAVEPOINT active_record_1
553
-  (0.1ms) SAVEPOINT active_record_1
554
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 16)
555
-  (0.1ms) RELEASE SAVEPOINT active_record_1
556
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 16 LIMIT 1
557
- Wordpress::Category Exists (0.4ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 21 AND `wp_term_taxonomy`.`term_taxonomy_id` = 16 LIMIT 1
558
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 21
559
-  (0.1ms) SAVEPOINT active_record_1
560
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 21
561
- SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (16, 21)
562
- SQL (0.3ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 16
563
-  (0.1ms) RELEASE SAVEPOINT active_record_1
564
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 21 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
565
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 21 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
566
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 21 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
567
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 21
568
- Wordpress::Category Load (0.4ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 0 AND `wp_terms`.`name` = 'Foo' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
569
-  (0.1ms) SAVEPOINT active_record_1
570
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
571
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
572
-  (0.1ms) RELEASE SAVEPOINT active_record_1
573
-  (0.1ms) SAVEPOINT active_record_1
574
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Foo', 17)
575
-  (0.1ms) RELEASE SAVEPOINT active_record_1
576
- Wordpress::Category Load (0.4ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 0 AND `wp_terms`.`name` = 'Bar' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
577
-  (0.2ms) SAVEPOINT active_record_1
578
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
579
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
580
-  (0.1ms) RELEASE SAVEPOINT active_record_1
581
-  (0.1ms) SAVEPOINT active_record_1
582
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Bar', 18)
583
-  (0.1ms) RELEASE SAVEPOINT active_record_1
584
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 17 LIMIT 1
585
- Wordpress::Category Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 18 LIMIT 1
586
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 21 LIMIT 1
587
- Wordpress::Category Exists (0.5ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 21 AND `wp_term_taxonomy`.`term_taxonomy_id` = 17 LIMIT 1
588
- Wordpress::Category Exists (0.3ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 21 AND `wp_term_taxonomy`.`term_taxonomy_id` = 18 LIMIT 1
589
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 21
590
-  (0.1ms) SAVEPOINT active_record_1
591
- Wordpress::User Load (0.3ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 24 LIMIT 1
592
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 24, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '21-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', 'fc3a4f0c-da44-4a66-aeb3-488a86e700cf', 21)
593
- Wordpress::PostTag Load (0.6ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 21
594
- SQL (0.2ms) DELETE FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 16
595
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 21
596
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (17, 21)
597
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 17
598
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (18, 21)
599
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 18
600
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
601
-  (0.1ms) RELEASE SAVEPOINT active_record_1
602
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 21 LIMIT 1
603
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
604
- Wordpress::Category Load (0.7ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 21
605
- Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 17 LIMIT 1
606
- Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 18 LIMIT 1
607
-  (0.5ms) ROLLBACK
608
-  (0.1ms) BEGIN
609
-  (0.1ms) COMMIT
610
-  (0.1ms) BEGIN
611
-  (0.1ms) SAVEPOINT active_record_1
612
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
613
-  (0.1ms) RELEASE SAVEPOINT active_record_1
614
-  (0.1ms) SAVEPOINT active_record_1
615
- Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
616
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
617
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 25, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
618
-  (0.1ms) RELEASE SAVEPOINT active_record_1
619
-  (0.1ms) SAVEPOINT active_record_1
620
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
621
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
622
-  (0.1ms) RELEASE SAVEPOINT active_record_1
623
-  (0.1ms) SAVEPOINT active_record_1
624
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 19)
625
-  (0.1ms) RELEASE SAVEPOINT active_record_1
626
-  (0.1ms) SAVEPOINT active_record_1
627
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (23, 19)
628
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 19
629
-  (0.1ms) RELEASE SAVEPOINT active_record_1
630
-  (0.1ms) SAVEPOINT active_record_1
631
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 23
632
-  (0.1ms) RELEASE SAVEPOINT active_record_1
633
- Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 19 LIMIT 1
634
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 23
635
-  (0.5ms) ROLLBACK
636
-  (0.1ms) BEGIN
637
-  (0.1ms) COMMIT
638
-  (0.1ms) BEGIN
639
-  (0.1ms) SAVEPOINT active_record_1
640
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
641
-  (0.1ms) RELEASE SAVEPOINT active_record_1
642
-  (0.4ms) SAVEPOINT active_record_1
643
- Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
644
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
645
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 26, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
646
-  (0.1ms) RELEASE SAVEPOINT active_record_1
647
-  (0.1ms) SAVEPOINT active_record_1
648
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
649
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
650
-  (0.1ms) RELEASE SAVEPOINT active_record_1
651
-  (0.1ms) SAVEPOINT active_record_1
652
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 20)
653
-  (0.1ms) RELEASE SAVEPOINT active_record_1
654
-  (0.1ms) SAVEPOINT active_record_1
655
- SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (24, 20)
656
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 20
657
-  (0.1ms) RELEASE SAVEPOINT active_record_1
658
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 24 LIMIT 1
659
-  (0.2ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 24
660
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 24 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
661
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 24 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
662
-  (0.5ms) ROLLBACK
663
-  (0.1ms) BEGIN
664
-  (0.1ms) COMMIT
665
-  (0.1ms) BEGIN
666
-  (0.1ms) SAVEPOINT active_record_1
667
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
668
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello', 'hello')
669
-  (0.1ms) RELEASE SAVEPOINT active_record_1
670
-  (0.4ms) ROLLBACK
671
-  (0.1ms) BEGIN
672
-  (0.1ms) COMMIT
673
-  (0.1ms) BEGIN
674
-  (0.1ms) SAVEPOINT active_record_1
675
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
676
-  (0.1ms) RELEASE SAVEPOINT active_record_1
677
-  (0.1ms) SAVEPOINT active_record_1
678
- Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
679
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
680
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 27, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
681
-  (0.1ms) RELEASE SAVEPOINT active_record_1
682
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 25 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
683
- Wordpress::Revision Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 25 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
684
- Wordpress::Revision Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 25 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
685
-  (0.3ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 25
686
-  (0.2ms) SAVEPOINT active_record_1
687
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 25 LIMIT 1
688
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 27 LIMIT 1
689
- SQL (0.4ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 27, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '25-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', 'f72583a7-d8a0-4c82-b0a6-39c8d169140f', 25)
690
- Wordpress::PostTag Load (0.4ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 25
691
- Wordpress::Category Load (0.4ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 25
692
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 25
693
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
694
-  (0.1ms) RELEASE SAVEPOINT active_record_1
695
-  (10.4ms) ROLLBACK
696
-  (0.2ms) BEGIN
697
-  (0.2ms) COMMIT
698
-  (0.1ms) BEGIN
699
-  (0.1ms) SAVEPOINT active_record_1
700
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
701
-  (0.1ms) RELEASE SAVEPOINT active_record_1
702
-  (0.1ms) SAVEPOINT active_record_1
703
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
704
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
705
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 28, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
706
-  (0.1ms) RELEASE SAVEPOINT active_record_1
707
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 27 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
708
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 27 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
709
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 27 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
710
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 27
711
-  (0.4ms) ROLLBACK
712
-  (0.1ms) BEGIN
713
-  (0.1ms) COMMIT
714
-  (0.1ms) BEGIN
715
-  (0.1ms) SAVEPOINT active_record_1
716
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
717
-  (0.1ms) RELEASE SAVEPOINT active_record_1
718
-  (0.1ms) SAVEPOINT active_record_1
719
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
720
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
721
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 29, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
722
-  (0.1ms) RELEASE SAVEPOINT active_record_1
723
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 28 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
724
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 28 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
725
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 28 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
726
-  (0.3ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 28
727
-  (0.1ms) SAVEPOINT active_record_1
728
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 28 LIMIT 1
729
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 29 LIMIT 1
730
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 29, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '28-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', '24b63322-3c17-4dea-9c63-0bd15b012354', 28)
731
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 28
732
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 28
733
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 28
734
- Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
735
-  (0.1ms) RELEASE SAVEPOINT active_record_1
736
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 28
737
-  (0.4ms) ROLLBACK
738
-  (0.1ms) BEGIN
739
-  (0.2ms) COMMIT
740
-  (0.1ms) BEGIN
741
-  (0.1ms) SAVEPOINT active_record_1
742
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
743
-  (0.1ms) RELEASE SAVEPOINT active_record_1
744
-  (0.1ms) SAVEPOINT active_record_1
745
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
746
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
747
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 30, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
748
-  (0.1ms) RELEASE SAVEPOINT active_record_1
749
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 30 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
750
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 30 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
751
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 30 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
752
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 30
753
-  (0.5ms) ROLLBACK
754
-  (0.1ms) BEGIN
755
-  (0.1ms) COMMIT
756
-  (0.1ms) BEGIN
757
-  (0.1ms) SAVEPOINT active_record_1
758
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
759
-  (0.1ms) RELEASE SAVEPOINT active_record_1
760
-  (0.1ms) SAVEPOINT active_record_1
761
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
762
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
763
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 31, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
764
-  (0.1ms) RELEASE SAVEPOINT active_record_1
765
-  (0.1ms) SAVEPOINT active_record_1
766
- SQL (0.2ms) UPDATE `wp_posts` SET `post_date` = '2009-01-01 00:00:00', `post_modified` = '2010-01-01 00:00:00', `post_modified_gmt` = '2010-01-01 00:00:00' WHERE `wp_posts`.`ID` = 31
767
-  (0.1ms) RELEASE SAVEPOINT active_record_1
768
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 31 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
769
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 31 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
770
-  (0.3ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 31
771
-  (0.1ms) SAVEPOINT active_record_1
772
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 31 LIMIT 1
773
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 31 LIMIT 1
774
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 31, '2009-01-01 00:00:00', '2017-07-03 14:38:38', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '31-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', '1082a6d6-9f49-42e2-84f2-b241b9d6bf6a', 31)
775
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 31
776
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 31
777
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 31
778
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
779
-  (0.1ms) RELEASE SAVEPOINT active_record_1
780
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 31 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
781
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 31 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
782
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 31
783
-  (0.1ms) SAVEPOINT active_record_1
784
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 31 LIMIT 1
785
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 31 LIMIT 1
786
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 31, '2009-01-01 00:00:00', '2017-07-03 14:38:38', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '31-revision-v2', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', '876bcda1-2965-43b0-9065-379505c4c382', 31)
787
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 31
788
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 31
789
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 31
790
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
791
-  (0.1ms) RELEASE SAVEPOINT active_record_1
792
- Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 31 LIMIT 1
793
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 31 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
794
-  (0.5ms) ROLLBACK
795
-  (0.1ms) BEGIN
796
-  (0.1ms) COMMIT
797
-  (0.1ms) BEGIN
798
-  (0.1ms) SAVEPOINT active_record_1
799
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
800
-  (0.1ms) RELEASE SAVEPOINT active_record_1
801
-  (0.1ms) SAVEPOINT active_record_1
802
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
803
- Wordpress::User Load (0.3ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
804
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 32, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
805
-  (0.1ms) RELEASE SAVEPOINT active_record_1
806
-  (0.1ms) SAVEPOINT active_record_1
807
- SQL (0.2ms) UPDATE `wp_posts` SET `post_date` = '2009-01-01 00:00:00', `post_modified` = '2010-01-01 00:00:00', `post_modified_gmt` = '2010-01-01 00:00:00' WHERE `wp_posts`.`ID` = 34
808
-  (0.1ms) RELEASE SAVEPOINT active_record_1
809
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 34 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
810
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 34 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
811
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 34
812
-  (0.1ms) SAVEPOINT active_record_1
813
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 34 LIMIT 1
814
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 32 LIMIT 1
815
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 32, '2009-01-01 00:00:00', '2017-07-03 14:38:38', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '34-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', '510dffe4-c7fe-4206-af19-f44f80f89415', 34)
816
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 34
817
- Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 34
818
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 34
819
- Wordpress::Post Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
820
-  (0.1ms) RELEASE SAVEPOINT active_record_1
821
- Wordpress::Revision Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 34 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
822
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 34 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
823
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 34
824
-  (0.1ms) SAVEPOINT active_record_1
825
- Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 34 LIMIT 1
826
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 32 LIMIT 1
827
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 32, '2009-01-01 00:00:00', '2017-07-03 14:38:38', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '34-revision-v2', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', '3f1a1238-69ca-43c4-9937-9e4a1b294f66', 34)
828
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 34
829
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 34
830
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 34
831
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
832
-  (0.1ms) RELEASE SAVEPOINT active_record_1
833
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 34 LIMIT 1
834
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 34 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
835
-  (0.5ms) ROLLBACK
836
-  (0.1ms) BEGIN
837
-  (0.1ms) COMMIT
838
-  (0.1ms) BEGIN
839
-  (0.1ms) SAVEPOINT active_record_1
840
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
841
-  (0.1ms) RELEASE SAVEPOINT active_record_1
842
-  (0.1ms) SAVEPOINT active_record_1
843
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
844
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
845
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 33, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
846
-  (0.1ms) RELEASE SAVEPOINT active_record_1
847
-  (0.1ms) SAVEPOINT active_record_1
848
- SQL (0.2ms) UPDATE `wp_posts` SET `post_date` = '2009-01-01 00:00:00', `post_modified` = '2010-01-01 00:00:00', `post_modified_gmt` = '2010-01-01 00:00:00' WHERE `wp_posts`.`ID` = 37
849
-  (0.1ms) RELEASE SAVEPOINT active_record_1
850
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 37 LIMIT 1
851
- Wordpress::Post Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
852
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 37 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
853
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 37 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
854
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 37 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
855
-  (0.3ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 37
856
-  (0.1ms) SAVEPOINT active_record_1
857
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 37 LIMIT 1
858
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 33 LIMIT 1
859
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 33, '2009-01-01 00:00:00', '2017-07-03 14:38:38', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '37-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', '11a041f2-fcdb-4ee6-b9cb-d340919ea82c', 37)
860
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 37
861
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 37
862
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 37
863
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
864
-  (0.1ms) RELEASE SAVEPOINT active_record_1
865
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 37 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
866
-  (0.4ms) ROLLBACK
867
-  (0.1ms) BEGIN
868
-  (0.1ms) COMMIT
869
-  (0.1ms) BEGIN
870
-  (0.1ms) SAVEPOINT active_record_1
871
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
872
-  (0.1ms) RELEASE SAVEPOINT active_record_1
873
-  (0.1ms) SAVEPOINT active_record_1
874
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
875
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
876
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 34, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
877
-  (0.1ms) RELEASE SAVEPOINT active_record_1
878
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 39 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
879
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 39 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
880
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 39
881
-  (0.1ms) SAVEPOINT active_record_1
882
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 39 LIMIT 1
883
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 34 LIMIT 1
884
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 34, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '39-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', '49188d94-c42c-4fa6-a487-3e1e0fd2ae67', 39)
885
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 39
886
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 39
887
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 39
888
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
889
-  (0.1ms) RELEASE SAVEPOINT active_record_1
890
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 39 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
891
-  (0.5ms) ROLLBACK
892
-  (0.2ms) BEGIN
893
-  (0.1ms) COMMIT
894
-  (0.1ms) BEGIN
895
-  (0.1ms) SAVEPOINT active_record_1
896
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
897
-  (0.1ms) RELEASE SAVEPOINT active_record_1
898
-  (0.1ms) SAVEPOINT active_record_1
899
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
900
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
901
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 35, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
902
-  (0.1ms) RELEASE SAVEPOINT active_record_1
903
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 41 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
904
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 41 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
905
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 41 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
906
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 41
907
-  (0.1ms) SAVEPOINT active_record_1
908
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 41 LIMIT 1
909
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 35 LIMIT 1
910
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 35, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '41-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', '8319dbc4-9a42-4382-816d-82814fe26286', 41)
911
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 41
912
- Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 41
913
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 41
914
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
915
-  (0.1ms) RELEASE SAVEPOINT active_record_1
916
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 41 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
917
-  (0.4ms) ROLLBACK
918
-  (0.1ms) BEGIN
919
-  (0.1ms) COMMIT
920
-  (0.1ms) BEGIN
921
-  (0.1ms) SAVEPOINT active_record_1
922
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
923
-  (0.1ms) RELEASE SAVEPOINT active_record_1
924
-  (0.1ms) SAVEPOINT active_record_1
925
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
926
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
927
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 36, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
928
-  (0.1ms) RELEASE SAVEPOINT active_record_1
929
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 43 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
930
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 43 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
931
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 43
932
-  (0.4ms) ROLLBACK
933
-  (0.1ms) BEGIN
934
-  (0.1ms) COMMIT
935
-  (0.1ms) BEGIN
936
-  (0.1ms) SAVEPOINT active_record_1
937
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
938
-  (0.1ms) RELEASE SAVEPOINT active_record_1
939
-  (0.1ms) SAVEPOINT active_record_1
940
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
941
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
942
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 37, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
943
-  (0.1ms) RELEASE SAVEPOINT active_record_1
944
-  (0.1ms) SAVEPOINT active_record_1
945
- SQL (0.2ms) UPDATE `wp_posts` SET `post_date` = '2009-01-01 00:00:00', `post_modified` = '2010-01-01 00:00:00', `post_modified_gmt` = '2010-01-01 00:00:00' WHERE `wp_posts`.`ID` = 44
946
-  (0.1ms) RELEASE SAVEPOINT active_record_1
947
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 44 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
948
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 44 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
949
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 44
950
-  (0.1ms) SAVEPOINT active_record_1
951
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 44 LIMIT 1
952
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 37 LIMIT 1
953
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 37, '2009-01-01 00:00:00', '2017-07-03 14:38:38', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '44-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', 'e1d9adee-501d-472c-894e-5ec5ce96912f', 44)
954
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 44
955
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 44
956
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 44
957
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
958
-  (0.1ms) RELEASE SAVEPOINT active_record_1
959
-  (0.5ms) ROLLBACK
960
-  (0.1ms) BEGIN
961
-  (0.1ms) COMMIT
962
-  (0.1ms) BEGIN
963
-  (0.1ms) SAVEPOINT active_record_1
964
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
965
-  (0.1ms) RELEASE SAVEPOINT active_record_1
966
-  (0.1ms) SAVEPOINT active_record_1
967
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
968
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
969
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 38, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
970
-  (0.2ms) RELEASE SAVEPOINT active_record_1
971
-  (0.1ms) SAVEPOINT active_record_1
972
- SQL (0.3ms) UPDATE `wp_posts` SET `post_date` = '2009-01-01 00:00:00', `post_modified` = '2010-01-01 00:00:00', `post_modified_gmt` = '2010-01-01 00:00:00' WHERE `wp_posts`.`ID` = 46
973
-  (0.1ms) RELEASE SAVEPOINT active_record_1
974
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 46 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
975
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 46 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
976
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 46
977
-  (0.1ms) SAVEPOINT active_record_1
978
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 46 LIMIT 1
979
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 38 LIMIT 1
980
- SQL (0.3ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 38, '2009-01-01 00:00:00', '2017-07-03 14:38:38', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '46-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', '5e9f8e50-a6dc-4cdb-ab5a-a769da6d361e', 46)
981
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 46
982
- Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 46
983
- SQL (0.3ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 46
984
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
985
-  (0.1ms) RELEASE SAVEPOINT active_record_1
986
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 46 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
987
-  (0.4ms) ROLLBACK
988
-  (0.1ms) BEGIN
989
-  (0.1ms) COMMIT
990
-  (0.1ms) BEGIN
991
-  (0.1ms) SAVEPOINT active_record_1
992
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
993
-  (0.1ms) RELEASE SAVEPOINT active_record_1
994
-  (0.1ms) SAVEPOINT active_record_1
995
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
996
- Wordpress::User Load (0.3ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
997
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 39, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
998
-  (0.1ms) RELEASE SAVEPOINT active_record_1
999
-  (0.1ms) SAVEPOINT active_record_1
1000
- SQL (0.2ms) UPDATE `wp_posts` SET `post_date` = '2009-01-01 00:00:00', `post_modified` = '2010-01-01 00:00:00', `post_modified_gmt` = '2010-01-01 00:00:00' WHERE `wp_posts`.`ID` = 48
1001
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1002
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 48 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
1003
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 48 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
1004
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 48
1005
-  (0.1ms) SAVEPOINT active_record_1
1006
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 48 LIMIT 1
1007
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 39 LIMIT 1
1008
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 39, '2009-01-01 00:00:00', '2017-07-03 14:38:38', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '48-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', 'e0a98c74-1022-4d74-8507-bd8b26256abb', 48)
1009
- Wordpress::PostTag Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 48
1010
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 48
1011
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 48
1012
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
1013
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1014
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 48 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
1015
-  (0.5ms) ROLLBACK
1016
-  (0.1ms) BEGIN
1017
-  (0.1ms) COMMIT
1018
-  (0.1ms) BEGIN
1019
-  (0.1ms) SAVEPOINT active_record_1
1020
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
1021
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1022
-  (0.1ms) SAVEPOINT active_record_1
1023
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
1024
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
1025
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 40, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
1026
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1027
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 50 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
1028
- Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 50 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
1029
-  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 50
1030
-  (0.1ms) SAVEPOINT active_record_1
1031
- SQL (0.2ms) UPDATE `wp_posts` SET `post_date` = '2009-01-01 00:00:00', `post_modified` = '2010-01-01 00:00:00', `post_modified_gmt` = '2010-01-01 00:00:00' WHERE `wp_posts`.`ID` = 50
1032
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 50 LIMIT 1
1033
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 40 LIMIT 1
1034
- SQL (0.3ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 40, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '50-revision-v1', '127.0.0.1', '127.0.0.1', '2017-07-03 14:38:38', '2017-07-03 14:38:38', '', '1a5921db-f8d4-44e9-bba1-8d1cfef6de04', 50)
1035
- Wordpress::PostTag Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 50
1036
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 50
1037
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 50
1038
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
1039
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1040
-  (0.1ms) SAVEPOINT active_record_1
1041
- SQL (0.3ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38', `post_name` = 'test' WHERE `wp_posts`.`ID` = 51
1042
- SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2017-07-03 14:38:38', `post_modified_gmt` = '2017-07-03 14:38:38' WHERE `wp_posts`.`ID` = 50
1043
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1044
- Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 50 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
1045
-  (0.5ms) ROLLBACK
1046
-  (0.1ms) BEGIN
1047
-  (0.1ms) COMMIT
1048
-  (0.1ms) BEGIN
1049
-  (0.1ms) SAVEPOINT active_record_1
1050
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
1051
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1052
-  (0.1ms) SAVEPOINT active_record_1
1053
- SQL (0.2ms) INSERT INTO `wp_usermeta` (`meta_key`, `meta_value`, `user_id`) VALUES ('foo', 'TEST', 41)
1054
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1055
- Wordpress::Usermeta Load (0.2ms) SELECT `wp_usermeta`.* FROM `wp_usermeta` WHERE `wp_usermeta`.`user_id` = 41
1056
-  (0.5ms) ROLLBACK
1057
-  (0.1ms) BEGIN
1058
-  (0.1ms) COMMIT
1059
-  (0.1ms) BEGIN
1060
-  (0.1ms) ROLLBACK
1061
-  (0.1ms) BEGIN
1062
-  (0.1ms) COMMIT
1063
-  (0.1ms) BEGIN
1064
-  (0.1ms) ROLLBACK
1065
-  (0.1ms) BEGIN
1066
-  (0.1ms) COMMIT
1067
-  (0.1ms) BEGIN
1068
-  (0.1ms) SAVEPOINT active_record_1
1069
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1070
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('General', 'general')
1071
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1072
-  (0.1ms) SAVEPOINT active_record_1
1073
- SQL (0.3ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes General', 22)
1074
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1075
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 0 AND `wp_terms`.`name` = 'General' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
1076
-  (0.5ms) ROLLBACK
1077
-  (0.1ms) BEGIN
1078
-  (0.1ms) COMMIT
1079
-  (0.1ms) BEGIN
1080
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 0 AND `wp_terms`.`name` = 'Parent' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
1081
-  (0.1ms) SAVEPOINT active_record_1
1082
- Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1083
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Parent', 'parent')
1084
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1085
-  (0.1ms) SAVEPOINT active_record_1
1086
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Parent', 23)
1087
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1088
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 22 AND `wp_terms`.`name` = 'Child' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
1089
-  (0.1ms) SAVEPOINT active_record_1
1090
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1091
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Child', 'child')
1092
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1093
-  (0.1ms) SAVEPOINT active_record_1
1094
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`, `parent`) VALUES ('category', 'Child', 24, 22)
1095
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1096
- Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 22 LIMIT 1
1097
- Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 23 LIMIT 1
1098
- Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 0 LIMIT 1
1099
- Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 24 LIMIT 1
1100
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 22
1101
-  (0.4ms) ROLLBACK
1102
-  (0.1ms) BEGIN
1103
-  (0.2ms) COMMIT
1104
-  (0.1ms) BEGIN
1105
- Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 0 AND `wp_terms`.`name` = 'Big Bang' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
1106
-  (0.1ms) SAVEPOINT active_record_1
1107
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1108
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Big Bang', 'big-bang')
1109
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1110
-  (0.1ms) SAVEPOINT active_record_1
1111
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Big Bang', 25)
1112
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1113
- Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 25 LIMIT 1
1114
- Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 0 LIMIT 1
1115
-  (0.4ms) ROLLBACK
1116
-  (0.1ms) BEGIN
1117
-  (0.1ms) COMMIT
1118
-  (0.1ms) BEGIN
1119
-  (0.1ms) SAVEPOINT active_record_1
1120
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1121
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('General', 'general')
1122
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1123
-  (0.1ms) SAVEPOINT active_record_1
1124
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes General', 26)
1125
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1126
- Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 26 LIMIT 1
1127
-  (0.3ms) ROLLBACK
1128
-  (0.1ms) BEGIN
1129
-  (0.1ms) COMMIT
1130
-  (0.1ms) BEGIN
1131
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_terms`.`name` = 'Hello, Hello!' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
1132
-  (0.1ms) SAVEPOINT active_record_1
1133
- Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1134
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello, Hello!', 'hello-hello')
1135
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1136
-  (0.1ms) SAVEPOINT active_record_1
1137
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 27, '')
1138
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1139
- Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 27 LIMIT 1
1140
-  (0.4ms) ROLLBACK
1141
-  (0.1ms) BEGIN
1142
-  (0.1ms) COMMIT
1143
-  (0.1ms) BEGIN
1144
-  (0.1ms) SAVEPOINT active_record_1
1145
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1146
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello Again', 'hello-again')
1147
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1148
-  (0.1ms) SAVEPOINT active_record_1
1149
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Hello Again', 28)
1150
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1151
- Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 28 LIMIT 1
1152
-  (0.5ms) ROLLBACK
1153
-  (0.1ms) BEGIN
1154
-  (0.1ms) COMMIT
1155
-  (0.1ms) BEGIN
1156
-  (0.1ms) SAVEPOINT active_record_1
1157
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1158
- SQL (1.3ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello Again', 'hello-again')
1159
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1160
-  (0.1ms) SAVEPOINT active_record_1
1161
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Hello Again', 29)
1162
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1163
- Wordpress::PostTag Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_terms`.`name` = 'Hello Again' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
1164
-  (0.3ms) ROLLBACK
1165
-  (0.1ms) BEGIN
1166
-  (0.1ms) COMMIT
1167
-  (0.1ms) BEGIN
1168
-  (0.1ms) SAVEPOINT active_record_1
1169
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
1170
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1171
-  (0.1ms) SAVEPOINT active_record_1
1172
- Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
1173
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
1174
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 42, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
1175
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1176
-  (0.1ms) SAVEPOINT active_record_1
1177
- Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1178
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
1179
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1180
-  (0.1ms) SAVEPOINT active_record_1
1181
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 30)
1182
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1183
-  (0.1ms) SAVEPOINT active_record_1
1184
- SQL (1.6ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (52, 29)
1185
- SQL (0.3ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 29
1186
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1187
-  (0.1ms) SAVEPOINT active_record_1
1188
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1189
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
1190
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1191
-  (0.1ms) SAVEPOINT active_record_1
1192
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 31)
1193
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1194
-  (0.1ms) SAVEPOINT active_record_1
1195
- SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (52, 30)
1196
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 30
1197
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1198
- Wordpress::PostTag Load (0.4ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 52 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
1199
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 52
1200
-  (0.1ms) SAVEPOINT active_record_1
1201
- Wordpress::Relationship Load (0.3ms) SELECT `wp_term_relationships`.* FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 52 AND `wp_term_relationships`.`term_taxonomy_id` IN (29, 30)
1202
- Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 29 LIMIT 1
1203
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 29
1204
- Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 30 LIMIT 1
1205
- SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 30
1206
- SQL (0.2ms) DELETE FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 52 AND `wp_term_relationships`.`term_taxonomy_id` IN (29, 30)
1207
- Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 52
1208
- SQL (1.4ms) DELETE FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 52
1209
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1210
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_taxonomy`.`term_taxonomy_id` = 29 LIMIT 1
1211
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_taxonomy`.`term_taxonomy_id` = 30 LIMIT 1
1212
-  (0.5ms) ROLLBACK
1213
-  (0.1ms) BEGIN
1214
-  (0.1ms) COMMIT
1215
-  (0.1ms) BEGIN
1216
-  (0.1ms) SAVEPOINT active_record_1
1217
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
1218
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1219
-  (0.1ms) SAVEPOINT active_record_1
1220
- Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
1221
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
1222
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 43, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
1223
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1224
-  (0.1ms) SAVEPOINT active_record_1
1225
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1226
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
1227
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1228
-  (0.1ms) SAVEPOINT active_record_1
1229
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 32)
1230
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1231
-  (0.1ms) SAVEPOINT active_record_1
1232
- SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (53, 31)
1233
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 31
1234
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1235
-  (0.1ms) SAVEPOINT active_record_1
1236
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1237
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
1238
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1239
-  (0.1ms) SAVEPOINT active_record_1
1240
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 33)
1241
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1242
-  (0.1ms) SAVEPOINT active_record_1
1243
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (53, 32)
1244
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 32
1245
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1246
- Wordpress::PostTag Load (0.4ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 53 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
1247
- Wordpress::PostTag Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 53
1248
-  (0.5ms) ROLLBACK
1249
-  (0.1ms) BEGIN
1250
-  (0.1ms) COMMIT
1251
-  (0.1ms) BEGIN
1252
-  (0.1ms) SAVEPOINT active_record_1
1253
- SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
1254
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1255
-  (0.1ms) SAVEPOINT active_record_1
1256
- Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
1257
- Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
1258
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 44, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
1259
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1260
-  (0.1ms) SAVEPOINT active_record_1
1261
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1262
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
1263
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1264
-  (0.1ms) SAVEPOINT active_record_1
1265
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 34)
1266
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1267
-  (0.1ms) SAVEPOINT active_record_1
1268
- SQL (0.4ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (54, 33)
1269
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 33
1270
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1271
-  (0.1ms) SAVEPOINT active_record_1
1272
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1273
- SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
1274
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1275
-  (0.1ms) SAVEPOINT active_record_1
1276
- SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 35)
1277
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1278
-  (0.1ms) SAVEPOINT active_record_1
1279
- SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (54, 34)
1280
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 34
1281
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1282
-  (0.2ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 54
1283
-  (6.4ms) ROLLBACK
1284
-  (0.1ms) BEGIN
1285
-  (0.1ms) COMMIT
1286
-  (0.1ms) BEGIN
1287
-  (0.1ms) SAVEPOINT active_record_1
1288
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
1289
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1290
-  (0.1ms) SAVEPOINT active_record_1
1291
- Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
1292
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
1293
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 45, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'test', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
1294
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1295
-  (0.1ms) SAVEPOINT active_record_1
1296
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1297
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
1298
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1299
-  (0.1ms) SAVEPOINT active_record_1
1300
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 36)
1301
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1302
-  (0.1ms) SAVEPOINT active_record_1
1303
- SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (55, 35)
1304
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 35
1305
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1306
-  (0.1ms) SAVEPOINT active_record_1
1307
- Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
1308
- SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
1309
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1310
-  (0.1ms) SAVEPOINT active_record_1
1311
- SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 37)
1312
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1313
-  (0.1ms) SAVEPOINT active_record_1
1314
- SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (55, 36)
1315
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 36
1316
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1317
- Wordpress::PostTag Load (0.4ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 55 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
1318
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 55
1319
-  (0.1ms) SAVEPOINT active_record_1
1320
- Wordpress::Relationship Load (0.2ms) SELECT `wp_term_relationships`.* FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 55 AND `wp_term_relationships`.`term_taxonomy_id` IN (35, 36)
1321
- Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 35 LIMIT 1
1322
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 35
1323
- Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 36 LIMIT 1
1324
- SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 36
1325
- SQL (0.2ms) DELETE FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 55 AND `wp_term_relationships`.`term_taxonomy_id` IN (35, 36)
1326
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1327
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_taxonomy`.`term_taxonomy_id` = 35 LIMIT 1
1328
- Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_taxonomy`.`term_taxonomy_id` = 36 LIMIT 1
1329
-  (0.5ms) ROLLBACK
1330
-  (0.1ms) BEGIN
1331
-  (0.1ms) COMMIT
1332
-  (0.1ms) BEGIN
1333
-  (0.1ms) SAVEPOINT active_record_1
1334
- SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2017-07-03 14:38:38', 'ACTIVATIONKEY', 'DISPLAY NAME')
1335
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1336
-  (0.1ms) SAVEPOINT active_record_1
1337
- Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
1338
- Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
1339
- SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('page', 'Page', 'Coming Soon!', '', '', '', '', 46, '2017-07-03 14:38:38', '2017-07-03 14:38:38', 'page', '2017-07-03 14:38:38', '2017-07-03 14:38:38')
1340
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1341
-  (0.1ms) SAVEPOINT active_record_1
1342
- SQL (0.3ms) INSERT INTO `wp_postmeta` (`meta_key`, `meta_value`, `post_id`) VALUES ('foo', 'TEST', 56)
1343
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1344
- Wordpress::Pagemeta Load (0.2ms) SELECT `wp_postmeta`.* FROM `wp_postmeta` WHERE `wp_postmeta`.`post_id` = 56
1345
-  (0.4ms) ROLLBACK