rails_wordpress 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6ee0d57a8966d225223ff18869a2e81c735ebc56
4
- data.tar.gz: f0ecd9be49dc5badfd80ed0525e6413e9bbc03d4
3
+ metadata.gz: 1e61b410df441f6dd34c97e0c3cc37a57943b1c4
4
+ data.tar.gz: 8f688e03a73b41edb2fa009a770ef965e172b48b
5
5
  SHA512:
6
- metadata.gz: a76e4bd8652518071dee77ebc36e367baec5dbe54d59ac6097259a92beac2c95529a14fd164b88a732055c9c0827dc0f34a55850f09691cbb519dcfb44a5c92d
7
- data.tar.gz: 840b390de30678de537f3221a6f9396ce15f61ec400d187e3d740a7c28345182d7e35551c9fa16205d43bb4e2aa82ea50de3fe3337ab9af0e3f79310b0980da8
6
+ metadata.gz: 1fb83d2a48c056c71fda1980c50a330bede983ba55ac3b168f8c27104f65578f9b190c485dda4aef011f45ce9e28e854d437c4709cda70aef155695e245fa426
7
+ data.tar.gz: d5faf1c7ef0c95724934fce141f3aa6023a6fe3594f40075eed82df1f3df066752c494ca16f6378d0a9595571dbe8223b52cae7815e1b40683e799af012934fa
@@ -6,7 +6,7 @@
6
6
  # | term_order | int(11) | NO | | 0 | |
7
7
  # +------------------+---------------------+------+-----+---------+-------+
8
8
  module Wordpress
9
- class Relationship < ActiveRecord::Base
9
+ class Relationship < WpBase
10
10
  self.table_name = "wp_term_relationships"
11
11
  self.primary_key = nil
12
12
  after_save :increment_term_use_count
@@ -9,7 +9,7 @@
9
9
  # | count | bigint(20) | NO | | 0 | |
10
10
  # +------------------+---------------------+------+-----+---------+----------------+
11
11
  module Wordpress
12
- class Taxonomy < ActiveRecord::Base
12
+ class Taxonomy < WpBase
13
13
  self.table_name = "wp_term_taxonomy"
14
14
  self.primary_key = "term_taxonomy_id"
15
15
  self.inheritance_column = 'taxonomy'
@@ -7,7 +7,7 @@
7
7
  # | term_group | bigint(10) | NO | | 0 | |
8
8
  # +------------+---------------------+------+-----+---------+----------------+
9
9
  module Wordpress
10
- class Term < ActiveRecord::Base
10
+ class Term < WpBase
11
11
  self.table_name = "wp_terms"
12
12
  before_save :set_slug_value
13
13
  validates :slug, uniqueness: true
@@ -1,5 +1,5 @@
1
1
  module Wordpress
2
- class User < ActiveRecord::Base
2
+ class User < WpBase
3
3
  self.table_name = "wp_users"
4
4
 
5
5
  has_many :posts, foreign_key: :post_author
@@ -0,0 +1,5 @@
1
+ module Wordpress
2
+ class WpBase < ActiveRecord::Base
3
+ self.abstract_class = true
4
+ end
5
+ end
@@ -1,5 +1,5 @@
1
1
  module Wordpress
2
- class WpPost < ActiveRecord::Base
2
+ class WpPost < WpBase
3
3
  self.table_name = 'wp_posts'
4
4
  self.inheritance_column = 'post_type'
5
5
 
@@ -1,5 +1,5 @@
1
1
  module Wordpress
2
- class WpPostmeta < ActiveRecord::Base
2
+ class WpPostmeta < WpBase
3
3
  self.table_name = 'wp_postmeta'
4
4
 
5
5
  belongs_to :post
@@ -1,3 +1,3 @@
1
1
  module Wordpress
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -10059,3 +10059,2371 @@ Mysql2::Error: Unknown column 'wp_posts.user_id' in 'where clause': SELECT `wp_p
10059
10059
   (0.1ms) RELEASE SAVEPOINT active_record_1
10060
10060
  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 Again' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
10061
10061
   (0.3ms) ROLLBACK
10062
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
10063
+  (34.0ms) DROP DATABASE IF EXISTS `wp_test`
10064
+  (4.6ms) CREATE DATABASE `wp_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
10065
+  (10.9ms) 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
10066
+  (12.3ms) CREATE INDEX `comment_id` USING btree ON `wp_commentmeta` (`comment_id`)
10067
+  (12.3ms) CREATE INDEX `meta_key` USING btree ON `wp_commentmeta` (`meta_key`) 
10068
+  (11.7ms) 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
10069
+  (12.1ms) CREATE INDEX `comment_approved_date_gmt` USING btree ON `wp_comments` (`comment_approved`, `comment_date_gmt`) 
10070
+  (12.1ms) CREATE INDEX `comment_author_email` USING btree ON `wp_comments` (`comment_author_email`(10))
10071
+  (12.3ms) CREATE INDEX `comment_date_gmt` USING btree ON `wp_comments` (`comment_date_gmt`) 
10072
+  (11.7ms) CREATE INDEX `comment_parent` USING btree ON `wp_comments` (`comment_parent`)
10073
+  (12.6ms) CREATE INDEX `comment_post_ID` USING btree ON `wp_comments` (`comment_post_ID`) 
10074
+  (11.3ms) 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
10075
+  (12.2ms) CREATE INDEX `link_visible` USING btree ON `wp_links` (`link_visible`) 
10076
+  (11.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
10077
+  (11.9ms) CREATE UNIQUE INDEX `option_name` USING btree ON `wp_options` (`option_name`) 
10078
+  (11.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
10079
+  (11.7ms) CREATE INDEX `meta_key` USING btree ON `wp_postmeta` (`meta_key`) 
10080
+  (10.8ms) CREATE INDEX `post_id` USING btree ON `wp_postmeta` (`post_id`)
10081
+  (12.0ms) 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
10082
+  (12.1ms) CREATE INDEX `post_author` USING btree ON `wp_posts` (`post_author`)
10083
+  (10.8ms) CREATE INDEX `post_name` USING btree ON `wp_posts` (`post_name`) 
10084
+  (10.9ms) CREATE INDEX `post_parent` USING btree ON `wp_posts` (`post_parent`)
10085
+  (11.9ms) CREATE INDEX `type_status_date` USING btree ON `wp_posts` (`post_type`, `post_status`, `post_date`, `ID`) 
10086
+  (11.2ms) 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
10087
+  (12.5ms) CREATE INDEX `term_taxonomy_id` USING btree ON `wp_term_relationships` (`term_taxonomy_id`) 
10088
+  (12.3ms) 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
10089
+  (12.4ms) CREATE INDEX `taxonomy` USING btree ON `wp_term_taxonomy` (`taxonomy`) 
10090
+  (12.2ms) CREATE UNIQUE INDEX `term_id_taxonomy` USING btree ON `wp_term_taxonomy` (`term_id`, `taxonomy`)
10091
+  (13.5ms) 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
10092
+  (12.6ms) CREATE INDEX `name` USING btree ON `wp_terms` (`name`)
10093
+  (11.4ms) CREATE UNIQUE INDEX `slug` USING btree ON `wp_terms` (`slug`) 
10094
+  (10.5ms) 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
10095
+  (12.3ms) CREATE INDEX `meta_key` USING btree ON `wp_usermeta` (`meta_key`) 
10096
+  (10.8ms) CREATE INDEX `user_id` USING btree ON `wp_usermeta` (`user_id`)
10097
+  (11.2ms) 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
10098
+  (13.7ms) CREATE INDEX `user_login_key` USING btree ON `wp_users` (`user_login`)
10099
+  (12.1ms) CREATE INDEX `user_nicename` USING btree ON `wp_users` (`user_nicename`) 
10100
+  (12.1ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
10101
+  (13.8ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
10102
+  (0.2ms) SELECT version FROM `schema_migrations`
10103
+  (4.4ms) INSERT INTO `schema_migrations` (version) VALUES ('0')
10104
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
10105
+  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
10106
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
10107
+  (558.0ms) SELECT * FROM information_schema.tables
10108
+  (1.1ms) SELECT table_name FROM information_schema.tables WHERE table_schema = 'wp_test' AND table_rows > 0
10109
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 1
10110
+  (0.1ms) BEGIN
10111
+  (0.1ms) COMMIT
10112
+  (0.1ms) BEGIN
10113
+  (0.1ms) SAVEPOINT active_record_1
10114
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:23')
10115
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10116
+  (0.1ms) SAVEPOINT active_record_1
10117
+ 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
10118
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10119
+ 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, '2016-05-13 13:44:23', '2016-05-13 13:44:23', 'test', '2016-05-13 13:44:23', '2016-05-13 13:44:23')
10120
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10121
+  (0.1ms) SAVEPOINT active_record_1
10122
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10123
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
10124
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10125
+  (0.1ms) SAVEPOINT active_record_1
10126
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 1)
10127
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10128
+  (0.1ms) SAVEPOINT active_record_1
10129
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (1, 1)
10130
+ SQL (0.3ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 1
10131
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10132
+  (0.1ms) SAVEPOINT active_record_1
10133
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10134
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
10135
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10136
+  (0.1ms) SAVEPOINT active_record_1
10137
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 2)
10138
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10139
+  (0.1ms) SAVEPOINT active_record_1
10140
+ SQL (10.4ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (1, 2)
10141
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 2
10142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10143
+ Wordpress::PostTag Load (0.5ms) 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` = 1 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
10144
+ 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` = 1
10145
+  (0.1ms) SAVEPOINT active_record_1
10146
+ Wordpress::Relationship Load (0.1ms) SELECT `wp_term_relationships`.* FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 1 AND `wp_term_relationships`.`term_taxonomy_id` IN (1, 2)
10147
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 1 LIMIT 1
10148
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 1
10149
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 2 LIMIT 1
10150
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 2
10151
+ SQL (0.1ms) DELETE FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 1 AND `wp_term_relationships`.`term_taxonomy_id` IN (1, 2)
10152
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10153
+ Wordpress::PostTag Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_taxonomy`.`term_taxonomy_id` = 1 LIMIT 1
10154
+ Wordpress::PostTag Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_taxonomy`.`term_taxonomy_id` = 2 LIMIT 1
10155
+  (6.1ms) ROLLBACK
10156
+  (0.1ms) BEGIN
10157
+  (0.1ms) COMMIT
10158
+  (0.1ms) BEGIN
10159
+  (0.1ms) SAVEPOINT active_record_1
10160
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10161
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10162
+  (0.1ms) SAVEPOINT active_record_1
10163
+ Wordpress::Post Load (10.5ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
10164
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10165
+ 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', '\'', 2, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10167
+  (0.1ms) SAVEPOINT active_record_1
10168
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10169
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
10170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10171
+  (0.1ms) SAVEPOINT active_record_1
10172
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 3)
10173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10174
+  (0.1ms) SAVEPOINT active_record_1
10175
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (2, 3)
10176
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 3
10177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10178
+  (0.1ms) SAVEPOINT active_record_1
10179
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10180
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
10181
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10182
+  (0.1ms) SAVEPOINT active_record_1
10183
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 4)
10184
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10185
+  (0.1ms) SAVEPOINT active_record_1
10186
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (2, 4)
10187
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 4
10188
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10189
+ 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` = 2 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
10190
+ 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` = 2
10191
+  (0.1ms) SAVEPOINT active_record_1
10192
+ Wordpress::Relationship Load (0.2ms) SELECT `wp_term_relationships`.* FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 2 AND `wp_term_relationships`.`term_taxonomy_id` IN (3, 4)
10193
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 3 LIMIT 1
10194
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 3
10195
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 4 LIMIT 1
10196
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 4
10197
+ SQL (0.2ms) DELETE FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 2 AND `wp_term_relationships`.`term_taxonomy_id` IN (3, 4)
10198
+ 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` = 2
10199
+ SQL (0.2ms) DELETE FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 2
10200
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10201
+ Wordpress::PostTag Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_taxonomy`.`term_taxonomy_id` = 3 LIMIT 1
10202
+ Wordpress::PostTag Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_taxonomy`.`term_taxonomy_id` = 4 LIMIT 1
10203
+  (0.4ms) ROLLBACK
10204
+  (0.1ms) BEGIN
10205
+  (0.1ms) COMMIT
10206
+  (0.1ms) BEGIN
10207
+  (0.1ms) SAVEPOINT active_record_1
10208
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10209
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10210
+  (0.1ms) SAVEPOINT active_record_1
10211
+ 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
10212
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10213
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10215
+  (0.1ms) SAVEPOINT active_record_1
10216
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10217
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
10218
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10219
+  (0.1ms) SAVEPOINT active_record_1
10220
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 5)
10221
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10222
+  (0.1ms) SAVEPOINT active_record_1
10223
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (3, 5)
10224
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 5
10225
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10226
+  (0.1ms) SAVEPOINT active_record_1
10227
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10228
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
10229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10230
+  (0.1ms) SAVEPOINT active_record_1
10231
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 6)
10232
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10233
+  (0.1ms) SAVEPOINT active_record_1
10234
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (3, 6)
10235
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 6
10236
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10237
+ 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` = 3 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
10238
+ 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` = 3
10239
+  (0.5ms) ROLLBACK
10240
+  (0.1ms) BEGIN
10241
+  (0.1ms) COMMIT
10242
+  (0.1ms) BEGIN
10243
+  (0.1ms) SAVEPOINT active_record_1
10244
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10245
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10246
+  (0.1ms) SAVEPOINT active_record_1
10247
+ 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
10248
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10249
+ 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', '\'', 4, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10250
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10251
+  (0.1ms) SAVEPOINT active_record_1
10252
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10253
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
10254
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10255
+  (0.1ms) SAVEPOINT active_record_1
10256
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 7)
10257
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10258
+  (0.1ms) SAVEPOINT active_record_1
10259
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (4, 7)
10260
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 7
10261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10262
+  (0.1ms) SAVEPOINT active_record_1
10263
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10264
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
10265
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10266
+  (0.1ms) SAVEPOINT active_record_1
10267
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 8)
10268
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10269
+  (0.1ms) SAVEPOINT active_record_1
10270
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (4, 8)
10271
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 8
10272
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10273
+  (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` = 4
10274
+  (0.5ms) ROLLBACK
10275
+  (0.1ms) BEGIN
10276
+  (0.1ms) COMMIT
10277
+  (0.1ms) BEGIN
10278
+  (0.1ms) SAVEPOINT active_record_1
10279
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10280
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10281
+  (0.1ms) SAVEPOINT active_record_1
10282
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10283
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10284
+  (0.1ms) SAVEPOINT active_record_1
10285
+ 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
10286
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10287
+ 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', '\'', 5, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10289
+  (0.1ms) SAVEPOINT active_record_1
10290
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10291
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10292
+  (0.1ms) SAVEPOINT active_record_1
10293
+ 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
10294
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10295
+ 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', '\'', 5, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10296
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10297
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`post_author` = 5
10298
+  (0.5ms) ROLLBACK
10299
+  (0.1ms) BEGIN
10300
+  (0.1ms) COMMIT
10301
+  (0.1ms) BEGIN
10302
+  (0.1ms) SAVEPOINT active_record_1
10303
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10305
+  (0.1ms) SAVEPOINT active_record_1
10306
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10307
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10308
+  (0.1ms) SAVEPOINT active_record_1
10309
+ 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
10310
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10311
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10312
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10313
+  (0.4ms) ROLLBACK
10314
+  (0.1ms) BEGIN
10315
+  (0.1ms) COMMIT
10316
+  (0.1ms) BEGIN
10317
+  (0.1ms) SAVEPOINT active_record_1
10318
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10319
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10320
+  (0.3ms) ROLLBACK
10321
+  (0.1ms) BEGIN
10322
+  (0.1ms) COMMIT
10323
+  (0.1ms) BEGIN
10324
+ 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` = 'Hello, Hello!' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
10325
+  (0.1ms) SAVEPOINT active_record_1
10326
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10327
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello, Hello!', 'hello-hello')
10328
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10329
+  (0.1ms) SAVEPOINT active_record_1
10330
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 9, '')
10331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10332
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 9 LIMIT 1
10333
+  (6.2ms) ROLLBACK
10334
+  (0.1ms) BEGIN
10335
+  (0.1ms) COMMIT
10336
+  (0.1ms) BEGIN
10337
+  (0.1ms) SAVEPOINT active_record_1
10338
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10339
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello Again', 'hello-again')
10340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10341
+  (0.1ms) SAVEPOINT active_record_1
10342
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Hello Again', 10)
10343
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10344
+ 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 Again' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
10345
+  (5.9ms) ROLLBACK
10346
+  (0.1ms) BEGIN
10347
+  (0.1ms) COMMIT
10348
+  (0.1ms) BEGIN
10349
+  (0.1ms) SAVEPOINT active_record_1
10350
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10351
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello Again', 'hello-again')
10352
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10353
+  (0.1ms) SAVEPOINT active_record_1
10354
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Hello Again', 11)
10355
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10356
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 11 LIMIT 1
10357
+  (0.4ms) ROLLBACK
10358
+  (0.1ms) BEGIN
10359
+  (0.1ms) COMMIT
10360
+  (0.1ms) BEGIN
10361
+  (0.1ms) SAVEPOINT active_record_1
10362
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10363
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello', 'hello')
10364
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10365
+  (0.3ms) ROLLBACK
10366
+  (0.1ms) BEGIN
10367
+  (0.1ms) COMMIT
10368
+  (0.1ms) BEGIN
10369
+  (0.1ms) SAVEPOINT active_record_1
10370
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10371
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10372
+  (0.1ms) SAVEPOINT active_record_1
10373
+ 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
10374
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10375
+ 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', '\'', 11, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10376
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10377
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 8 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10378
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 8 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10379
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 8 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10380
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 8
10381
+  (6.3ms) ROLLBACK
10382
+  (0.1ms) BEGIN
10383
+  (0.1ms) COMMIT
10384
+  (0.1ms) BEGIN
10385
+  (0.1ms) SAVEPOINT active_record_1
10386
+ SQL (6.5ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10387
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10388
+  (0.1ms) SAVEPOINT active_record_1
10389
+ 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
10390
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10391
+ 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', '\'', 12, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10393
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 9 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10394
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 9 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10395
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 9 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10396
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 9
10397
+  (0.1ms) SAVEPOINT active_record_1
10398
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 9 LIMIT 1
10399
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 12 LIMIT 1
10400
+ 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', 12, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '9-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', '9dc7186d-5b31-477d-9742-eca710aa1161', 9)
10401
+ 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` = 9
10402
+ 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` = 9
10403
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 9
10404
+ 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
10405
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10406
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 9
10407
+  (0.4ms) ROLLBACK
10408
+  (0.1ms) BEGIN
10409
+  (0.1ms) COMMIT
10410
+  (0.1ms) BEGIN
10411
+  (0.1ms) SAVEPOINT active_record_1
10412
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10413
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10414
+  (0.1ms) SAVEPOINT active_record_1
10415
+ 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
10416
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10417
+ 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', '\'', 13, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10419
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 11 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10420
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 11 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10421
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 11 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10422
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 11
10423
+  (6.3ms) ROLLBACK
10424
+  (0.1ms) BEGIN
10425
+  (0.1ms) COMMIT
10426
+  (0.1ms) BEGIN
10427
+  (0.1ms) SAVEPOINT active_record_1
10428
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10430
+  (0.1ms) SAVEPOINT active_record_1
10431
+ 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
10432
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10433
+ 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', '\'', 14, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10434
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10435
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 12 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10436
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 12 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10437
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 12 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10438
+  (0.3ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 12
10439
+  (0.1ms) SAVEPOINT active_record_1
10440
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 12 LIMIT 1
10441
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 14 LIMIT 1
10442
+ 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', 14, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '12-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', 'e56517e3-94ff-4257-9d96-116b845afc8f', 12)
10443
+ 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` = 12
10444
+ 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` = 12
10445
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 12
10446
+ 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
10447
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10448
+  (0.5ms) ROLLBACK
10449
+  (0.1ms) BEGIN
10450
+  (0.1ms) COMMIT
10451
+  (0.1ms) BEGIN
10452
+  (0.1ms) SAVEPOINT active_record_1
10453
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10454
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10455
+  (0.1ms) SAVEPOINT active_record_1
10456
+ 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
10457
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10458
+ 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', '\'', 15, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10459
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10460
+  (0.1ms) SAVEPOINT active_record_1
10461
+ 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` = 14
10462
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10463
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 14 LIMIT 1
10464
+ 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
10465
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 14 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10466
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 14 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10467
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 14 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10468
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 14
10469
+  (0.1ms) SAVEPOINT active_record_1
10470
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 14 LIMIT 1
10471
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 15 LIMIT 1
10472
+ 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', 15, '2009-01-01 00:00:00', '2016-05-13 13:44:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '14-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', '02fa757f-6b29-47d0-a490-4ef68d21669b', 14)
10473
+ 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
10474
+ 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` = 14
10475
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 14
10476
+ 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
10477
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10478
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 14 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10479
+  (0.3ms) ROLLBACK
10480
+  (0.1ms) BEGIN
10481
+  (0.1ms) COMMIT
10482
+  (0.1ms) BEGIN
10483
+  (0.1ms) SAVEPOINT active_record_1
10484
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10485
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10486
+  (0.1ms) SAVEPOINT active_record_1
10487
+ 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
10488
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10489
+ 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', '\'', 16, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10490
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10491
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 16 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10492
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 16 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10493
+  (0.3ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 16
10494
+  (0.1ms) SAVEPOINT active_record_1
10495
+ Wordpress::Post Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 16 LIMIT 1
10496
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 16 LIMIT 1
10497
+ 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', 16, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '16-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', 'af1a768e-e2dd-4465-beb5-9bbb9deba3e3', 16)
10498
+ 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` = 16
10499
+ 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
10500
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 16
10501
+ 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
10502
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10503
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 16 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10504
+  (0.5ms) ROLLBACK
10505
+  (0.1ms) BEGIN
10506
+  (0.1ms) COMMIT
10507
+  (0.1ms) BEGIN
10508
+  (0.1ms) SAVEPOINT active_record_1
10509
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10510
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10511
+  (0.1ms) SAVEPOINT active_record_1
10512
+ 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
10513
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10514
+ 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', '\'', 17, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10515
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10516
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10517
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10518
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10519
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18
10520
+  (0.1ms) SAVEPOINT active_record_1
10521
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 18 LIMIT 1
10522
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 17 LIMIT 1
10523
+ 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', 17, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '18-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', 'ac35bac5-43d5-4650-aa3e-46e144f64504', 18)
10524
+ 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` = 18
10525
+ 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` = 18
10526
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 18
10527
+ 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
10528
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10529
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10530
+  (0.5ms) ROLLBACK
10531
+  (0.1ms) BEGIN
10532
+  (0.1ms) COMMIT
10533
+  (0.1ms) BEGIN
10534
+  (0.1ms) SAVEPOINT active_record_1
10535
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10536
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10537
+  (0.1ms) SAVEPOINT active_record_1
10538
+ 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
10539
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10540
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10541
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10542
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 20 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10543
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 20 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10544
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 20
10545
+  (0.4ms) ROLLBACK
10546
+  (0.1ms) BEGIN
10547
+  (0.1ms) COMMIT
10548
+  (0.1ms) BEGIN
10549
+  (0.1ms) SAVEPOINT active_record_1
10550
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10551
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10552
+  (0.1ms) SAVEPOINT active_record_1
10553
+ 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
10554
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10555
+ 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', '\'', 19, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10556
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10557
+  (0.1ms) SAVEPOINT active_record_1
10558
+ 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` = 21
10559
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10560
+ 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
10561
+ 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
10562
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 21
10563
+  (0.1ms) SAVEPOINT active_record_1
10564
+ 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
10565
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 19 LIMIT 1
10566
+ SQL (0.1ms) 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', 19, '2009-01-01 00:00:00', '2016-05-13 13:44:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '21-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', '343716a7-9aca-4e74-842e-e6aa0ccab7b2', 21)
10567
+ 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` = 21
10568
+ 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
10569
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 21
10570
+ 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
10571
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10572
+ 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
10573
+  (0.5ms) ROLLBACK
10574
+  (0.1ms) BEGIN
10575
+  (0.1ms) COMMIT
10576
+  (0.1ms) BEGIN
10577
+  (0.1ms) SAVEPOINT active_record_1
10578
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10579
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10580
+  (0.1ms) SAVEPOINT active_record_1
10581
+ 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
10582
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10583
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10584
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10585
+  (0.1ms) SAVEPOINT active_record_1
10586
+ 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` = 23
10587
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10588
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 23 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10589
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 23 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10590
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 23
10591
+  (0.1ms) SAVEPOINT active_record_1
10592
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 23 LIMIT 1
10593
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 20 LIMIT 1
10594
+ 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', 20, '2009-01-01 00:00:00', '2016-05-13 13:44:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '23-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', 'bb66ca45-4e62-4f18-aa9a-06004c23c657', 23)
10595
+ 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` = 23
10596
+ 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
10597
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 23
10598
+ 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
10599
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10600
+  (0.5ms) ROLLBACK
10601
+  (0.1ms) BEGIN
10602
+  (0.1ms) COMMIT
10603
+  (0.1ms) BEGIN
10604
+  (0.1ms) SAVEPOINT active_record_1
10605
+ SQL (0.5ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10606
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10607
+  (0.1ms) SAVEPOINT active_record_1
10608
+ 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
10609
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10610
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10611
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10612
+  (0.1ms) SAVEPOINT active_record_1
10613
+ 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` = 25
10614
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10615
+ Wordpress::Revision Load (0.2ms) 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
10616
+ Wordpress::Revision Load (0.2ms) 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
10617
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 25
10618
+  (0.1ms) SAVEPOINT active_record_1
10619
+ 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
10620
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 21 LIMIT 1
10621
+ 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', 21, '2009-01-01 00:00:00', '2016-05-13 13:44:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '25-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', 'e7a54c1c-387e-4290-8576-4301f94c7054', 25)
10622
+ 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` = 25
10623
+ 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` = 25
10624
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 25
10625
+ 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
10626
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10627
+ Wordpress::Revision Load (0.2ms) 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
10628
+  (0.4ms) ROLLBACK
10629
+  (0.1ms) BEGIN
10630
+  (0.1ms) COMMIT
10631
+  (0.1ms) BEGIN
10632
+  (0.1ms) SAVEPOINT active_record_1
10633
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10634
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10635
+  (0.1ms) SAVEPOINT active_record_1
10636
+ 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
10637
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10638
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10639
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10640
+ 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
10641
+ 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
10642
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 27
10643
+  (0.1ms) SAVEPOINT active_record_1
10644
+ 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` = 27
10645
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 27 LIMIT 1
10646
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 22 LIMIT 1
10647
+ 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', 22, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '27-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', '8055bae3-d6af-4421-961e-2a6ee6e895a3', 27)
10648
+ 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` = 27
10649
+ 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` = 27
10650
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 27
10651
+ 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
10652
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10653
+  (0.1ms) SAVEPOINT active_record_1
10654
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24', `post_name` = 'test' WHERE `wp_posts`.`ID` = 28
10655
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 27
10656
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10657
+ 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
10658
+  (0.4ms) ROLLBACK
10659
+  (0.1ms) BEGIN
10660
+  (0.1ms) COMMIT
10661
+  (0.1ms) BEGIN
10662
+  (0.1ms) SAVEPOINT active_record_1
10663
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10664
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10665
+  (0.1ms) SAVEPOINT active_record_1
10666
+ 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
10667
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10668
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10669
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10670
+  (0.1ms) SAVEPOINT active_record_1
10671
+ 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` = 29
10672
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10673
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10674
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10675
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29
10676
+  (0.1ms) SAVEPOINT active_record_1
10677
+ Wordpress::Post Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 29 LIMIT 1
10678
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 23 LIMIT 1
10679
+ 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', 23, '2009-01-01 00:00:00', '2016-05-13 13:44:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '29-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', 'daa834ad-5cd7-44d0-9994-167d17609222', 29)
10680
+ 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` = 29
10681
+ 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` = 29
10682
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 29
10683
+ 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
10684
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10685
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10686
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10687
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29
10688
+  (0.1ms) SAVEPOINT active_record_1
10689
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 29 LIMIT 1
10690
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 23 LIMIT 1
10691
+ 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', 23, '2009-01-01 00:00:00', '2016-05-13 13:44:24', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '29-revision-v2', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', '40ef8446-01a1-4c74-8a12-6acb99345b7b', 29)
10692
+ 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` = 29
10693
+ 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` = 29
10694
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 29
10695
+ 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
10696
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10697
+ Wordpress::Post Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 29 LIMIT 1
10698
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10699
+  (0.3ms) ROLLBACK
10700
+  (0.1ms) BEGIN
10701
+  (0.1ms) COMMIT
10702
+  (0.1ms) BEGIN
10703
+  (0.1ms) SAVEPOINT active_record_1
10704
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10705
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10706
+  (0.1ms) SAVEPOINT active_record_1
10707
+ 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
10708
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10709
+ 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', '\'', 24, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10710
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10711
+  (0.1ms) SAVEPOINT active_record_1
10712
+ 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` = 32
10713
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10714
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 32 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10715
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 32 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10716
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 32
10717
+  (0.1ms) SAVEPOINT active_record_1
10718
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 32 LIMIT 1
10719
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 24 LIMIT 1
10720
+ SQL (0.1ms) 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, '2009-01-01 00:00:00', '2016-05-13 13:44:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '32-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', 'a5618ca2-2944-49e3-b82f-baf483366fe7', 32)
10721
+ 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` = 32
10722
+ 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` = 32
10723
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 32
10724
+ 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
10725
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10726
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 32 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10727
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 32 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10728
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 32
10729
+  (0.1ms) SAVEPOINT active_record_1
10730
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 32 LIMIT 1
10731
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 24 LIMIT 1
10732
+ 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, '2009-01-01 00:00:00', '2016-05-13 13:44:24', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '32-revision-v2', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', '3cef73f3-ba8d-4f28-9f40-8d4c45175a51', 32)
10733
+ 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` = 32
10734
+ 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` = 32
10735
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 32
10736
+ 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
10737
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10738
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 32 LIMIT 1
10739
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 32 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10740
+  (0.5ms) ROLLBACK
10741
+  (0.1ms) BEGIN
10742
+  (0.1ms) COMMIT
10743
+  (0.1ms) BEGIN
10744
+  (0.1ms) SAVEPOINT active_record_1
10745
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10746
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10747
+  (0.1ms) SAVEPOINT active_record_1
10748
+ 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
10749
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10750
+ SQL (0.1ms) 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!', '', '', '', '', 25, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'page', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10751
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10752
+  (0.4ms) ROLLBACK
10753
+  (0.1ms) BEGIN
10754
+  (0.1ms) COMMIT
10755
+  (0.1ms) BEGIN
10756
+  (0.1ms) SAVEPOINT active_record_1
10757
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10758
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10759
+  (0.1ms) SAVEPOINT active_record_1
10760
+ 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
10761
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10762
+ 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!', '', '', '', '', 26, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'page', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10763
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10764
+ 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
10765
+  (0.1ms) SAVEPOINT active_record_1
10766
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10767
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
10768
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10769
+  (0.1ms) SAVEPOINT active_record_1
10770
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 13, '')
10771
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10772
+ 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
10773
+  (0.1ms) SAVEPOINT active_record_1
10774
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10775
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
10776
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10777
+  (0.1ms) SAVEPOINT active_record_1
10778
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 14, '')
10779
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10780
+ 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` = 36 AND `wp_term_taxonomy`.`term_taxonomy_id` = 12 LIMIT 1
10781
+ 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` = 36 AND `wp_term_taxonomy`.`term_taxonomy_id` = 13 LIMIT 1
10782
+ 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` = 36
10783
+  (0.1ms) SAVEPOINT active_record_1
10784
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 36
10785
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (12, 36)
10786
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 12
10787
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (13, 36)
10788
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 13
10789
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10790
+  (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` = 36
10791
+  (0.5ms) ROLLBACK
10792
+  (0.1ms) BEGIN
10793
+  (0.1ms) COMMIT
10794
+  (0.1ms) BEGIN
10795
+  (0.1ms) SAVEPOINT active_record_1
10796
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10797
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10798
+  (0.1ms) SAVEPOINT active_record_1
10799
+ 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
10800
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10801
+ 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!', '', '', '', '', 27, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'page', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10803
+  (0.1ms) SAVEPOINT active_record_1
10804
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10805
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo80', 'foo80')
10806
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10807
+  (0.1ms) SAVEPOINT active_record_1
10808
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo80', 15)
10809
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10810
+  (0.1ms) SAVEPOINT active_record_1
10811
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (37, 14)
10812
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 14
10813
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10814
+  (0.4ms) 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` = 37
10815
+  (0.2ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 37
10816
+ 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` = 37 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
10817
+  (0.5ms) ROLLBACK
10818
+  (0.1ms) BEGIN
10819
+  (0.1ms) COMMIT
10820
+  (0.1ms) BEGIN
10821
+  (0.1ms) ROLLBACK
10822
+  (0.1ms) BEGIN
10823
+  (0.1ms) COMMIT
10824
+  (0.1ms) BEGIN
10825
+  (0.1ms) ROLLBACK
10826
+  (0.1ms) BEGIN
10827
+  (0.1ms) COMMIT
10828
+  (0.1ms) BEGIN
10829
+ 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
10830
+  (0.1ms) SAVEPOINT active_record_1
10831
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10832
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Big Bang', 'big-bang')
10833
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10834
+  (0.1ms) SAVEPOINT active_record_1
10835
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Big Bang', 16)
10836
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10837
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 16 LIMIT 1
10838
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 0 LIMIT 1
10839
+  (0.4ms) ROLLBACK
10840
+  (0.1ms) BEGIN
10841
+  (0.1ms) COMMIT
10842
+  (0.1ms) BEGIN
10843
+ 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
10844
+  (0.1ms) SAVEPOINT active_record_1
10845
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10846
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Parent', 'parent')
10847
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10848
+  (0.1ms) SAVEPOINT active_record_1
10849
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Parent', 17)
10850
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10851
+ 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` = 16 AND `wp_terms`.`name` = 'Child' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
10852
+  (0.1ms) SAVEPOINT active_record_1
10853
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10854
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Child', 'child')
10855
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10856
+  (0.1ms) SAVEPOINT active_record_1
10857
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`, `parent`) VALUES ('category', 'Child', 18, 16)
10858
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10859
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 16 LIMIT 1
10860
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 17 LIMIT 1
10861
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 0 LIMIT 1
10862
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 18 LIMIT 1
10863
+ Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 16
10864
+  (0.4ms) ROLLBACK
10865
+  (0.1ms) BEGIN
10866
+  (0.1ms) COMMIT
10867
+  (0.1ms) BEGIN
10868
+  (0.1ms) SAVEPOINT active_record_1
10869
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10870
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('General', 'general')
10871
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10872
+  (0.1ms) SAVEPOINT active_record_1
10873
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes General', 19)
10874
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10875
+ 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
10876
+  (0.4ms) ROLLBACK
10877
+  (0.1ms) BEGIN
10878
+  (0.1ms) COMMIT
10879
+  (0.1ms) BEGIN
10880
+  (0.1ms) SAVEPOINT active_record_1
10881
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10882
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('General', 'general')
10883
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10884
+  (0.1ms) SAVEPOINT active_record_1
10885
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes General', 20)
10886
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10887
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 20 LIMIT 1
10888
+  (0.3ms) ROLLBACK
10889
+  (0.1ms) BEGIN
10890
+  (0.1ms) COMMIT
10891
+  (0.1ms) BEGIN
10892
+  (0.1ms) SAVEPOINT active_record_1
10893
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10894
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10895
+  (0.1ms) SAVEPOINT active_record_1
10896
+ 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
10897
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10898
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10899
+  (0.2ms) RELEASE SAVEPOINT active_record_1
10900
+  (0.4ms) ROLLBACK
10901
+  (0.1ms) BEGIN
10902
+  (0.1ms) COMMIT
10903
+  (0.1ms) BEGIN
10904
+  (0.1ms) SAVEPOINT active_record_1
10905
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10906
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10907
+  (0.1ms) SAVEPOINT active_record_1
10908
+ 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
10909
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10910
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10911
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10912
+  (0.3ms) ROLLBACK
10913
+  (0.1ms) BEGIN
10914
+  (0.1ms) COMMIT
10915
+  (0.1ms) BEGIN
10916
+  (0.1ms) SAVEPOINT active_record_1
10917
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10918
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10919
+  (0.1ms) SAVEPOINT active_record_1
10920
+ 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
10921
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10922
+ 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', '\'', 30, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10923
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10924
+  (0.1ms) SAVEPOINT active_record_1
10925
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10926
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
10927
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10928
+  (0.1ms) SAVEPOINT active_record_1
10929
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 21)
10930
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10931
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 21 LIMIT 1
10932
+ 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
10933
+ 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` = 20 LIMIT 1
10934
+ 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` = 40 AND `wp_term_taxonomy`.`term_taxonomy_id` = 20 LIMIT 1
10935
+ 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` = 40
10936
+  (0.2ms) SAVEPOINT active_record_1
10937
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 40
10938
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (20, 40)
10939
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 20
10940
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10941
+ 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` = 40
10942
+  (0.5ms) ROLLBACK
10943
+  (0.1ms) BEGIN
10944
+  (0.1ms) COMMIT
10945
+  (0.1ms) BEGIN
10946
+  (0.1ms) SAVEPOINT active_record_1
10947
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10948
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10949
+  (0.1ms) SAVEPOINT active_record_1
10950
+ 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
10951
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10952
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10953
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10954
+  (0.1ms) SAVEPOINT active_record_1
10955
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10956
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
10957
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10958
+  (0.1ms) SAVEPOINT active_record_1
10959
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 22)
10960
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10961
+  (0.1ms) SAVEPOINT active_record_1
10962
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (41, 21)
10963
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 21
10964
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10965
+ 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
10966
+  (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` = 41
10967
+ 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` = 41 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
10968
+ 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` = 41 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
10969
+  (0.3ms) ROLLBACK
10970
+  (0.1ms) BEGIN
10971
+  (0.1ms) COMMIT
10972
+  (0.1ms) BEGIN
10973
+  (0.1ms) SAVEPOINT active_record_1
10974
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
10975
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10976
+  (0.1ms) SAVEPOINT active_record_1
10977
+ 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
10978
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10979
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
10980
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10981
+  (0.1ms) SAVEPOINT active_record_1
10982
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10983
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
10984
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10985
+  (0.1ms) SAVEPOINT active_record_1
10986
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 23)
10987
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10988
+ 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` = 22 LIMIT 1
10989
+ 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` = 42 AND `wp_term_taxonomy`.`term_taxonomy_id` = 22 LIMIT 1
10990
+ 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` = 42
10991
+  (0.1ms) SAVEPOINT active_record_1
10992
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 42
10993
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (22, 42)
10994
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 22
10995
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10996
+ 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` = 42
10997
+  (0.5ms) ROLLBACK
10998
+  (0.1ms) BEGIN
10999
+  (0.1ms) COMMIT
11000
+  (0.1ms) BEGIN
11001
+  (0.1ms) SAVEPOINT active_record_1
11002
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
11003
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11004
+  (0.1ms) SAVEPOINT active_record_1
11005
+ 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
11006
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11007
+ 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', '\'', 33, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
11008
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11009
+  (0.1ms) SAVEPOINT active_record_1
11010
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11011
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
11012
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11013
+  (0.1ms) SAVEPOINT active_record_1
11014
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 24)
11015
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11016
+  (0.1ms) SAVEPOINT active_record_1
11017
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (43, 23)
11018
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 23
11019
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11020
+  (0.1ms) SAVEPOINT active_record_1
11021
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 43
11022
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11023
+ Wordpress::Category 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 ('category') AND `wp_term_relationships`.`object_id` = 43 AND `wp_term_taxonomy`.`term_taxonomy_id` = 23 LIMIT 1
11024
+  (0.4ms) ROLLBACK
11025
+  (0.1ms) BEGIN
11026
+  (0.1ms) COMMIT
11027
+  (0.1ms) BEGIN
11028
+  (0.1ms) SAVEPOINT active_record_1
11029
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
11030
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11031
+  (0.1ms) SAVEPOINT active_record_1
11032
+ 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
11033
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11034
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
11035
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11036
+  (0.1ms) SAVEPOINT active_record_1
11037
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11038
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
11039
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11040
+  (0.1ms) SAVEPOINT active_record_1
11041
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 25)
11042
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11043
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 25 LIMIT 1
11044
+ 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
11045
+ 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` = 24 LIMIT 1
11046
+ 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` = 44 AND `wp_term_taxonomy`.`term_taxonomy_id` = 24 LIMIT 1
11047
+ 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
11048
+  (0.1ms) SAVEPOINT active_record_1
11049
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 44
11050
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (24, 44)
11051
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 24
11052
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11053
+ 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
11054
+  (0.5ms) ROLLBACK
11055
+  (0.1ms) BEGIN
11056
+  (0.1ms) COMMIT
11057
+  (0.1ms) BEGIN
11058
+  (0.1ms) SAVEPOINT active_record_1
11059
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
11060
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11061
+  (0.2ms) SAVEPOINT active_record_1
11062
+ 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
11063
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11064
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
11065
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11066
+  (0.1ms) SAVEPOINT active_record_1
11067
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11068
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
11069
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11070
+  (0.1ms) SAVEPOINT active_record_1
11071
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 26)
11072
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11073
+ 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` = 25 LIMIT 1
11074
+ Wordpress::Category 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 ('category') AND `wp_term_relationships`.`object_id` = 45 AND `wp_term_taxonomy`.`term_taxonomy_id` = 25 LIMIT 1
11075
+ 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` = 45
11076
+  (0.1ms) SAVEPOINT active_record_1
11077
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 45
11078
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (25, 45)
11079
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 25
11080
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11081
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 45 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11082
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 45 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11083
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 45 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11084
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 45
11085
+ 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` = 'Foo' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
11086
+  (0.1ms) SAVEPOINT active_record_1
11087
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11088
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
11089
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11090
+  (0.1ms) SAVEPOINT active_record_1
11091
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Foo', 27)
11092
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11093
+ 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
11094
+  (0.1ms) SAVEPOINT active_record_1
11095
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11096
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
11097
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11098
+  (0.1ms) SAVEPOINT active_record_1
11099
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Bar', 28)
11100
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11101
+ 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` = 26 LIMIT 1
11102
+ 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` = 27 LIMIT 1
11103
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 45 LIMIT 1
11104
+ Wordpress::Category 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 ('category') AND `wp_term_relationships`.`object_id` = 45 AND `wp_term_taxonomy`.`term_taxonomy_id` = 26 LIMIT 1
11105
+ Wordpress::Category 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 ('category') AND `wp_term_relationships`.`object_id` = 45 AND `wp_term_taxonomy`.`term_taxonomy_id` = 27 LIMIT 1
11106
+ 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` = 45
11107
+  (0.1ms) SAVEPOINT active_record_1
11108
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 35 LIMIT 1
11109
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '45-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:44:24', '2016-05-13 13:44:24', '', '32379523-3a32-4318-b447-1190a5cb7617', 45)
11110
+ 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` = 45
11111
+ SQL (0.2ms) DELETE FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 25
11112
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 45
11113
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (26, 45)
11114
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 26
11115
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (27, 45)
11116
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 27
11117
+ 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
11118
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11119
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 45 LIMIT 1
11120
+ 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
11121
+ 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` = 45
11122
+ Wordpress::Term Load (0.3ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 27 LIMIT 1
11123
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 28 LIMIT 1
11124
+  (0.5ms) ROLLBACK
11125
+  (0.1ms) BEGIN
11126
+  (0.1ms) COMMIT
11127
+  (0.1ms) BEGIN
11128
+  (0.1ms) SAVEPOINT active_record_1
11129
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
11130
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11131
+  (0.1ms) SAVEPOINT active_record_1
11132
+ 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
11133
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11134
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
11135
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11136
+  (0.1ms) SAVEPOINT active_record_1
11137
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11138
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
11139
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11140
+  (0.1ms) SAVEPOINT active_record_1
11141
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 29)
11142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11143
+  (0.1ms) SAVEPOINT active_record_1
11144
+ SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (47, 28)
11145
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 28
11146
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11147
+  (0.1ms) SAVEPOINT active_record_1
11148
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 47
11149
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11150
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 29 LIMIT 1
11151
+ 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` = 47
11152
+  (0.5ms) ROLLBACK
11153
+  (0.1ms) BEGIN
11154
+  (0.1ms) COMMIT
11155
+  (0.1ms) BEGIN
11156
+  (0.1ms) SAVEPOINT active_record_1
11157
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
11158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11159
+  (0.1ms) SAVEPOINT active_record_1
11160
+ 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
11161
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11162
+ 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', '\'', 37, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
11163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11164
+  (0.1ms) SAVEPOINT active_record_1
11165
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11166
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
11167
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11168
+  (0.1ms) SAVEPOINT active_record_1
11169
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 30)
11170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11171
+ 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` = 29 LIMIT 1
11172
+ 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` = 48 AND `wp_term_taxonomy`.`term_taxonomy_id` = 29 LIMIT 1
11173
+ 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
11174
+  (0.1ms) SAVEPOINT active_record_1
11175
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 48
11176
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (29, 48)
11177
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 29
11178
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11179
+ 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
11180
+  (0.5ms) ROLLBACK
11181
+  (0.1ms) BEGIN
11182
+  (0.1ms) COMMIT
11183
+  (0.1ms) BEGIN
11184
+  (0.1ms) SAVEPOINT active_record_1
11185
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
11186
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11187
+  (0.1ms) SAVEPOINT active_record_1
11188
+ 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
11189
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11190
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
11191
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11192
+ 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
11193
+  (0.1ms) SAVEPOINT active_record_1
11194
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11195
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
11196
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11197
+  (0.1ms) SAVEPOINT active_record_1
11198
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 31, '')
11199
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11200
+ 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
11201
+  (0.1ms) SAVEPOINT active_record_1
11202
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11203
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
11204
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11205
+  (0.1ms) SAVEPOINT active_record_1
11206
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 32, '')
11207
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11208
+ 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` = 49 AND `wp_term_taxonomy`.`term_taxonomy_id` = 30 LIMIT 1
11209
+ 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` = 49 AND `wp_term_taxonomy`.`term_taxonomy_id` = 31 LIMIT 1
11210
+ 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` = 49
11211
+  (0.1ms) SAVEPOINT active_record_1
11212
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:44:24', `post_modified_gmt` = '2016-05-13 13:44:24' WHERE `wp_posts`.`ID` = 49
11213
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (30, 49)
11214
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 30
11215
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (31, 49)
11216
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 31
11217
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11218
+  (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` = 49
11219
+  (0.5ms) ROLLBACK
11220
+  (0.1ms) BEGIN
11221
+  (0.1ms) COMMIT
11222
+  (0.1ms) BEGIN
11223
+  (0.1ms) SAVEPOINT active_record_1
11224
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:44:24')
11225
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11226
+  (0.1ms) SAVEPOINT active_record_1
11227
+ 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
11228
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11229
+ 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, '2016-05-13 13:44:24', '2016-05-13 13:44:24', 'test', '2016-05-13 13:44:24', '2016-05-13 13:44:24')
11230
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11231
+  (0.1ms) SAVEPOINT active_record_1
11232
+ Wordpress::Term Exists (0.4ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11233
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo25', 'foo25')
11234
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11235
+  (0.1ms) SAVEPOINT active_record_1
11236
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo25', 33)
11237
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11238
+  (0.1ms) SAVEPOINT active_record_1
11239
+ SQL (0.4ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (50, 32)
11240
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 32
11241
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11242
+  (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` = 50
11243
+  (0.2ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 50
11244
+ 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 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
11245
+  (0.4ms) ROLLBACK
11246
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
11247
+  (22.9ms) DROP DATABASE IF EXISTS `wp_test`
11248
+  (5.5ms) CREATE DATABASE `wp_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
11249
+  (10.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
11250
+  (11.2ms) CREATE INDEX `comment_id` USING btree ON `wp_commentmeta` (`comment_id`)
11251
+  (12.1ms) CREATE INDEX `meta_key` USING btree ON `wp_commentmeta` (`meta_key`) 
11252
+  (11.7ms) 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
11253
+  (11.4ms) CREATE INDEX `comment_approved_date_gmt` USING btree ON `wp_comments` (`comment_approved`, `comment_date_gmt`) 
11254
+  (12.4ms) CREATE INDEX `comment_author_email` USING btree ON `wp_comments` (`comment_author_email`(10))
11255
+  (12.1ms) CREATE INDEX `comment_date_gmt` USING btree ON `wp_comments` (`comment_date_gmt`) 
11256
+  (12.1ms) CREATE INDEX `comment_parent` USING btree ON `wp_comments` (`comment_parent`)
11257
+  (11.2ms) CREATE INDEX `comment_post_ID` USING btree ON `wp_comments` (`comment_post_ID`) 
11258
+  (11.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
11259
+  (12.8ms) CREATE INDEX `link_visible` USING btree ON `wp_links` (`link_visible`) 
11260
+  (12.3ms) 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
11261
+  (12.8ms) CREATE UNIQUE INDEX `option_name` USING btree ON `wp_options` (`option_name`) 
11262
+  (11.4ms) 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
11263
+  (12.2ms) CREATE INDEX `meta_key` USING btree ON `wp_postmeta` (`meta_key`) 
11264
+  (10.7ms) CREATE INDEX `post_id` USING btree ON `wp_postmeta` (`post_id`)
11265
+  (12.7ms) 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
11266
+  (11.7ms) CREATE INDEX `post_author` USING btree ON `wp_posts` (`post_author`)
11267
+  (10.9ms) CREATE INDEX `post_name` USING btree ON `wp_posts` (`post_name`) 
11268
+  (10.5ms) CREATE INDEX `post_parent` USING btree ON `wp_posts` (`post_parent`)
11269
+  (11.3ms) CREATE INDEX `type_status_date` USING btree ON `wp_posts` (`post_type`, `post_status`, `post_date`, `ID`) 
11270
+  (10.8ms) 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
11271
+  (12.6ms) CREATE INDEX `term_taxonomy_id` USING btree ON `wp_term_relationships` (`term_taxonomy_id`) 
11272
+  (11.2ms) 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
11273
+  (12.4ms) CREATE INDEX `taxonomy` USING btree ON `wp_term_taxonomy` (`taxonomy`) 
11274
+  (12.2ms) CREATE UNIQUE INDEX `term_id_taxonomy` USING btree ON `wp_term_taxonomy` (`term_id`, `taxonomy`)
11275
+  (12.0ms) 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
11276
+  (11.9ms) CREATE INDEX `name` USING btree ON `wp_terms` (`name`)
11277
+  (11.2ms) CREATE UNIQUE INDEX `slug` USING btree ON `wp_terms` (`slug`) 
11278
+  (10.7ms) 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
11279
+  (11.3ms) CREATE INDEX `meta_key` USING btree ON `wp_usermeta` (`meta_key`) 
11280
+  (11.8ms) CREATE INDEX `user_id` USING btree ON `wp_usermeta` (`user_id`)
11281
+  (11.4ms) 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
11282
+  (12.1ms) CREATE INDEX `user_login_key` USING btree ON `wp_users` (`user_login`)
11283
+  (11.7ms) CREATE INDEX `user_nicename` USING btree ON `wp_users` (`user_nicename`) 
11284
+  (12.6ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
11285
+  (16.2ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
11286
+  (0.2ms) SELECT version FROM `schema_migrations`
11287
+  (5.4ms) INSERT INTO `schema_migrations` (version) VALUES ('0')
11288
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
11289
+  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
11290
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
11291
+  (376.7ms) SELECT * FROM information_schema.tables
11292
+  (1.0ms) SELECT table_name FROM information_schema.tables WHERE table_schema = 'wp_test' AND table_rows > 0
11293
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 1
11294
+  (0.1ms) BEGIN
11295
+  (0.1ms) COMMIT
11296
+  (0.1ms) BEGIN
11297
+ 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` = 'Big Bang' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
11298
+  (0.1ms) SAVEPOINT active_record_1
11299
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11300
+ SQL (0.3ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Big Bang', 'big-bang')
11301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11302
+  (0.1ms) SAVEPOINT active_record_1
11303
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Big Bang', 1)
11304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11305
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 1 LIMIT 1
11306
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 0 LIMIT 1
11307
+  (0.4ms) ROLLBACK
11308
+  (0.1ms) BEGIN
11309
+  (0.1ms) COMMIT
11310
+  (0.1ms) BEGIN
11311
+ 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` = 'Parent' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
11312
+  (0.1ms) SAVEPOINT active_record_1
11313
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11314
+ SQL (0.7ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Parent', 'parent')
11315
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11316
+  (0.2ms) SAVEPOINT active_record_1
11317
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Parent', 2)
11318
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11319
+ Wordpress::Category Load (0.5ms) 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` = 2 AND `wp_terms`.`name` = 'Child' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
11320
+  (0.2ms) SAVEPOINT active_record_1
11321
+ Wordpress::Term Exists (1.5ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11322
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Child', 'child')
11323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11324
+  (0.1ms) SAVEPOINT active_record_1
11325
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`, `parent`) VALUES ('category', 'Child', 3, 2)
11326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11327
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 2 LIMIT 1
11328
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 2 LIMIT 1
11329
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 0 LIMIT 1
11330
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 3 LIMIT 1
11331
+ Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 2
11332
+  (0.4ms) ROLLBACK
11333
+  (0.1ms) BEGIN
11334
+  (0.1ms) COMMIT
11335
+  (0.1ms) BEGIN
11336
+  (0.1ms) SAVEPOINT active_record_1
11337
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11338
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('General', 'general')
11339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11340
+  (0.1ms) SAVEPOINT active_record_1
11341
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes General', 4)
11342
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11343
+ 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
11344
+  (0.3ms) ROLLBACK
11345
+  (0.1ms) BEGIN
11346
+  (0.1ms) COMMIT
11347
+  (0.1ms) BEGIN
11348
+  (0.1ms) SAVEPOINT active_record_1
11349
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11350
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('General', 'general')
11351
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11352
+  (0.1ms) SAVEPOINT active_record_1
11353
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes General', 5)
11354
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11355
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 5 LIMIT 1
11356
+  (0.3ms) ROLLBACK
11357
+  (0.1ms) BEGIN
11358
+  (0.1ms) COMMIT
11359
+  (0.1ms) BEGIN
11360
+  (0.1ms) SAVEPOINT active_record_1
11361
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11362
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11363
+  (0.1ms) SAVEPOINT active_record_1
11364
+ 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
11365
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11366
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11367
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11368
+  (0.4ms) ROLLBACK
11369
+  (0.1ms) BEGIN
11370
+  (0.1ms) COMMIT
11371
+  (0.1ms) BEGIN
11372
+  (0.1ms) SAVEPOINT active_record_1
11373
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11374
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello', 'hello')
11375
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11376
+  (0.3ms) ROLLBACK
11377
+  (0.1ms) BEGIN
11378
+  (0.1ms) COMMIT
11379
+  (0.1ms) BEGIN
11380
+  (0.1ms) SAVEPOINT active_record_1
11381
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11382
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11383
+  (0.1ms) SAVEPOINT active_record_1
11384
+ 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
11385
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11386
+ SQL (0.1ms) 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!', '', '', '', '', 2, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'page', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11387
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11388
+  (0.4ms) ROLLBACK
11389
+  (0.1ms) BEGIN
11390
+  (0.1ms) COMMIT
11391
+  (0.1ms) BEGIN
11392
+  (0.1ms) SAVEPOINT active_record_1
11393
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11394
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11395
+  (0.1ms) SAVEPOINT active_record_1
11396
+ 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
11397
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11398
+ SQL (0.1ms) 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!', '', '', '', '', 3, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'page', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11399
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11400
+ 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
11401
+  (0.1ms) SAVEPOINT active_record_1
11402
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11403
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
11404
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11405
+  (0.1ms) SAVEPOINT active_record_1
11406
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 7, '')
11407
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11408
+ 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
11409
+  (0.1ms) SAVEPOINT active_record_1
11410
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11411
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
11412
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11413
+  (0.1ms) SAVEPOINT active_record_1
11414
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 8, '')
11415
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11416
+ 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` = 3 AND `wp_term_taxonomy`.`term_taxonomy_id` = 6 LIMIT 1
11417
+ 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` = 3 AND `wp_term_taxonomy`.`term_taxonomy_id` = 7 LIMIT 1
11418
+ 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` = 3
11419
+  (0.1ms) SAVEPOINT active_record_1
11420
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 3
11421
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (6, 3)
11422
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 6
11423
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (7, 3)
11424
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 7
11425
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11426
+  (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` = 3
11427
+  (0.3ms) ROLLBACK
11428
+  (0.1ms) BEGIN
11429
+  (0.1ms) COMMIT
11430
+  (0.1ms) BEGIN
11431
+  (0.1ms) SAVEPOINT active_record_1
11432
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11434
+  (0.1ms) SAVEPOINT active_record_1
11435
+ 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
11436
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11437
+ SQL (0.1ms) 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!', '', '', '', '', 4, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'page', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11438
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11439
+  (0.1ms) SAVEPOINT active_record_1
11440
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11441
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo45', 'foo45')
11442
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11443
+  (0.1ms) SAVEPOINT active_record_1
11444
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo45', 9)
11445
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11446
+  (0.1ms) SAVEPOINT active_record_1
11447
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (4, 8)
11448
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 8
11449
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11450
+  (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` = 4
11451
+  (0.1ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 4
11452
+ 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` = 4 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
11453
+  (0.3ms) ROLLBACK
11454
+  (0.1ms) BEGIN
11455
+  (0.1ms) COMMIT
11456
+  (0.1ms) BEGIN
11457
+  (0.1ms) SAVEPOINT active_record_1
11458
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11459
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11460
+  (0.1ms) SAVEPOINT active_record_1
11461
+ 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
11462
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11463
+ 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', '\'', 5, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11464
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11465
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 5 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11466
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 5 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11467
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 5 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11468
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 5
11469
+  (0.5ms) ROLLBACK
11470
+  (0.1ms) BEGIN
11471
+  (0.1ms) COMMIT
11472
+  (0.1ms) BEGIN
11473
+  (0.1ms) SAVEPOINT active_record_1
11474
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11475
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11476
+  (0.1ms) SAVEPOINT active_record_1
11477
+ 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
11478
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11479
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11480
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11481
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 6 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11482
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 6 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11483
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 6 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11484
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 6
11485
+  (0.1ms) SAVEPOINT active_record_1
11486
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 6 LIMIT 1
11487
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 6 LIMIT 1
11488
+ 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', 6, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '6-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', 'c581e2d0-52d6-45e5-85ef-a46019d0b2e6', 6)
11489
+ 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` = 6
11490
+ 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` = 6
11491
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 6
11492
+ 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
11493
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11494
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 6
11495
+  (0.4ms) ROLLBACK
11496
+  (0.1ms) BEGIN
11497
+  (0.1ms) COMMIT
11498
+  (0.1ms) BEGIN
11499
+  (0.1ms) SAVEPOINT active_record_1
11500
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11501
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11502
+  (0.1ms) SAVEPOINT active_record_1
11503
+ 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
11504
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11505
+ 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', '\'', 7, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11507
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 8 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11508
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 8 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11509
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 8 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11510
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 8
11511
+  (0.4ms) ROLLBACK
11512
+  (0.1ms) BEGIN
11513
+  (0.1ms) COMMIT
11514
+  (0.1ms) BEGIN
11515
+  (0.1ms) SAVEPOINT active_record_1
11516
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11517
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11518
+  (0.1ms) SAVEPOINT active_record_1
11519
+ 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
11520
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11521
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11522
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11523
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 9 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11524
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 9 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11525
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 9 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11526
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 9
11527
+  (0.1ms) SAVEPOINT active_record_1
11528
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 9 LIMIT 1
11529
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 8 LIMIT 1
11530
+ 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', 8, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '9-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', '35fd41be-3e3a-4903-b5d4-9386d2d1ae6f', 9)
11531
+ 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` = 9
11532
+ 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` = 9
11533
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 9
11534
+ 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
11535
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11536
+  (0.4ms) ROLLBACK
11537
+  (0.1ms) BEGIN
11538
+  (0.1ms) COMMIT
11539
+  (0.1ms) BEGIN
11540
+  (0.1ms) SAVEPOINT active_record_1
11541
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11542
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11543
+  (0.1ms) SAVEPOINT active_record_1
11544
+ 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
11545
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11546
+ 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', '\'', 9, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11547
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11548
+  (0.1ms) SAVEPOINT active_record_1
11549
+ 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` = 11
11550
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11551
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 11 LIMIT 1
11552
+ 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
11553
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 11 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11554
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 11 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11555
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 11 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11556
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 11
11557
+  (0.1ms) SAVEPOINT active_record_1
11558
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 11 LIMIT 1
11559
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 9 LIMIT 1
11560
+ 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', 9, '2009-01-01 00:00:00', '2016-05-13 13:51:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '11-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', 'e9dbe5bc-a5d1-4707-90ef-5308d791b160', 11)
11561
+ 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
11562
+ 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` = 11
11563
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 11
11564
+ 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
11565
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11566
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 11 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11567
+  (0.4ms) ROLLBACK
11568
+  (0.1ms) BEGIN
11569
+  (0.1ms) COMMIT
11570
+  (0.1ms) BEGIN
11571
+  (0.1ms) SAVEPOINT active_record_1
11572
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11573
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11574
+  (0.1ms) SAVEPOINT active_record_1
11575
+ 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
11576
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11577
+ 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', '\'', 10, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11578
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11579
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 13 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11580
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 13 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11581
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 13
11582
+  (0.1ms) SAVEPOINT active_record_1
11583
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 13 LIMIT 1
11584
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 10 LIMIT 1
11585
+ 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', 10, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '13-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', 'fa653e97-d437-429f-9221-d1093d4eb0b2', 13)
11586
+ 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` = 13
11587
+ 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` = 13
11588
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 13
11589
+ 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
11590
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11591
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 13 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11592
+  (0.4ms) ROLLBACK
11593
+  (0.1ms) BEGIN
11594
+  (0.1ms) COMMIT
11595
+  (0.1ms) BEGIN
11596
+  (0.1ms) SAVEPOINT active_record_1
11597
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11599
+  (0.1ms) SAVEPOINT active_record_1
11600
+ 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
11601
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11602
+ 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', '\'', 11, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11603
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11604
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 15 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11605
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 15 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11606
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 15 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11607
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 15
11608
+  (0.1ms) SAVEPOINT active_record_1
11609
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 15 LIMIT 1
11610
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 11 LIMIT 1
11611
+ 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', 11, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '15-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', 'ea5a8215-a016-45dc-9642-4d0e8c2850f7', 15)
11612
+ 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` = 15
11613
+ 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` = 15
11614
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 15
11615
+ 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
11616
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11617
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 15 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11618
+  (0.4ms) ROLLBACK
11619
+  (0.1ms) BEGIN
11620
+  (0.1ms) COMMIT
11621
+  (0.1ms) BEGIN
11622
+  (0.1ms) SAVEPOINT active_record_1
11623
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11624
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11625
+  (0.1ms) SAVEPOINT active_record_1
11626
+ 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
11627
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11628
+ 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', '\'', 12, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11630
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 17 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11631
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 17 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11632
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 17
11633
+  (0.3ms) ROLLBACK
11634
+  (0.1ms) BEGIN
11635
+  (0.1ms) COMMIT
11636
+  (0.1ms) BEGIN
11637
+  (0.1ms) SAVEPOINT active_record_1
11638
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11639
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11640
+  (0.1ms) SAVEPOINT active_record_1
11641
+ 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
11642
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11643
+ 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', '\'', 13, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11644
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11645
+  (0.1ms) SAVEPOINT active_record_1
11646
+ 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` = 18
11647
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11648
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11649
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11650
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18
11651
+  (0.1ms) SAVEPOINT active_record_1
11652
+ Wordpress::Post Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 18 LIMIT 1
11653
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 13 LIMIT 1
11654
+ 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', 13, '2009-01-01 00:00:00', '2016-05-13 13:51:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '18-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', '7e09f33e-3b68-4fb8-b088-b8d2c5a12957', 18)
11655
+ 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` = 18
11656
+ 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` = 18
11657
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 18
11658
+ 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
11659
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11660
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11661
+  (0.3ms) ROLLBACK
11662
+  (0.1ms) BEGIN
11663
+  (0.1ms) COMMIT
11664
+  (0.1ms) BEGIN
11665
+  (0.1ms) SAVEPOINT active_record_1
11666
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11667
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11668
+  (0.1ms) SAVEPOINT active_record_1
11669
+ 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
11670
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11671
+ 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', '\'', 14, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11672
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11673
+  (0.1ms) SAVEPOINT active_record_1
11674
+ 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` = 20
11675
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11676
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 20 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11677
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 20 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11678
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 20
11679
+  (0.1ms) SAVEPOINT active_record_1
11680
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 20 LIMIT 1
11681
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 14 LIMIT 1
11682
+ 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', 14, '2009-01-01 00:00:00', '2016-05-13 13:51:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '20-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', 'c42648d4-61fe-4b28-899a-9eaa1939bd51', 20)
11683
+ 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` = 20
11684
+ 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` = 20
11685
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 20
11686
+ 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
11687
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11688
+  (0.5ms) ROLLBACK
11689
+  (0.1ms) BEGIN
11690
+  (0.1ms) COMMIT
11691
+  (0.1ms) BEGIN
11692
+  (0.1ms) SAVEPOINT active_record_1
11693
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11694
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11695
+  (0.1ms) SAVEPOINT active_record_1
11696
+ 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
11697
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11698
+ 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', '\'', 15, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11699
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11700
+  (0.1ms) SAVEPOINT active_record_1
11701
+ 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` = 22
11702
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11703
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 22 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11704
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 22 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11705
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 22
11706
+  (0.1ms) SAVEPOINT active_record_1
11707
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 22 LIMIT 1
11708
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 15 LIMIT 1
11709
+ 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', 15, '2009-01-01 00:00:00', '2016-05-13 13:51:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '22-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', 'f0f6e3dd-4133-472f-8aa0-3b81e11b1402', 22)
11710
+ 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` = 22
11711
+ 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` = 22
11712
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 22
11713
+ 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
11714
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11715
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 22 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11716
+  (0.5ms) ROLLBACK
11717
+  (0.1ms) BEGIN
11718
+  (0.1ms) COMMIT
11719
+  (0.0ms) BEGIN
11720
+  (0.1ms) SAVEPOINT active_record_1
11721
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11723
+  (0.1ms) SAVEPOINT active_record_1
11724
+ 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
11725
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11726
+ 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', '\'', 16, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11727
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11728
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 24 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11729
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 24 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11730
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 24
11731
+  (0.1ms) SAVEPOINT active_record_1
11732
+ 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` = 24
11733
+ 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
11734
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 16 LIMIT 1
11735
+ 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', 16, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '24-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', '904c2562-cf79-49f9-90ef-cae81ab1abd9', 24)
11736
+ 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` = 24
11737
+ 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
11738
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 24
11739
+ 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
11740
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11741
+  (0.1ms) SAVEPOINT active_record_1
11742
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24', `post_name` = 'test' WHERE `wp_posts`.`ID` = 25
11743
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 24
11744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11745
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 24 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11746
+  (0.4ms) ROLLBACK
11747
+  (0.1ms) BEGIN
11748
+  (0.1ms) COMMIT
11749
+  (0.1ms) BEGIN
11750
+  (0.1ms) SAVEPOINT active_record_1
11751
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11752
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11753
+  (0.1ms) SAVEPOINT active_record_1
11754
+ 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
11755
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11756
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11757
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11758
+  (0.1ms) SAVEPOINT active_record_1
11759
+ 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` = 26
11760
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11761
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11762
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11763
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26
11764
+  (0.1ms) SAVEPOINT active_record_1
11765
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 26 LIMIT 1
11766
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 17 LIMIT 1
11767
+ 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', 17, '2009-01-01 00:00:00', '2016-05-13 13:51:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '26-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', 'dfc3a7c5-661a-4bd9-a896-3da528547c3b', 26)
11768
+ 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` = 26
11769
+ 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` = 26
11770
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 26
11771
+ 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
11772
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11773
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11774
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11775
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26
11776
+  (0.1ms) SAVEPOINT active_record_1
11777
+ Wordpress::Post Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 26 LIMIT 1
11778
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 17 LIMIT 1
11779
+ 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', 17, '2009-01-01 00:00:00', '2016-05-13 13:51:24', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '26-revision-v2', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', '513ec1e8-71d4-446b-856f-4ea757e345e4', 26)
11780
+ 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` = 26
11781
+ 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` = 26
11782
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 26
11783
+ 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
11784
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11785
+ Wordpress::Post Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 26 LIMIT 1
11786
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11787
+  (0.5ms) ROLLBACK
11788
+  (0.1ms) BEGIN
11789
+  (0.1ms) COMMIT
11790
+  (0.1ms) BEGIN
11791
+  (0.1ms) SAVEPOINT active_record_1
11792
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11793
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11794
+  (0.1ms) SAVEPOINT active_record_1
11795
+ 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
11796
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11797
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11798
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11799
+  (0.1ms) SAVEPOINT active_record_1
11800
+ 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` = 29
11801
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11802
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11803
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11804
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29
11805
+  (0.2ms) SAVEPOINT active_record_1
11806
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 29 LIMIT 1
11807
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 18 LIMIT 1
11808
+ 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', 18, '2009-01-01 00:00:00', '2016-05-13 13:51:24', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '29-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', '760f551a-c055-459c-9bd9-8b635204f0a0', 29)
11809
+ 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` = 29
11810
+ 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` = 29
11811
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 29
11812
+ 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
11813
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11814
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11815
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11816
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29
11817
+  (0.1ms) SAVEPOINT active_record_1
11818
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 29 LIMIT 1
11819
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 18 LIMIT 1
11820
+ 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', 18, '2009-01-01 00:00:00', '2016-05-13 13:51:24', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '29-revision-v2', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', '2bcf3f28-3a50-4866-ad8a-7772dc890892', 29)
11821
+ 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` = 29
11822
+ 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` = 29
11823
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 29
11824
+ 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
11825
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11826
+ Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 29 LIMIT 1
11827
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
11828
+  (0.4ms) ROLLBACK
11829
+  (0.1ms) BEGIN
11830
+  (0.1ms) COMMIT
11831
+  (0.1ms) BEGIN
11832
+  (0.1ms) SAVEPOINT active_record_1
11833
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11834
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11835
+  (0.1ms) SAVEPOINT active_record_1
11836
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11837
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11838
+  (0.1ms) SAVEPOINT active_record_1
11839
+ 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
11840
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11841
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11843
+  (0.1ms) SAVEPOINT active_record_1
11844
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11845
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11846
+  (0.1ms) SAVEPOINT active_record_1
11847
+ 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
11848
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11849
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11850
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11851
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`post_author` = 19
11852
+  (0.4ms) ROLLBACK
11853
+  (0.1ms) BEGIN
11854
+  (0.1ms) COMMIT
11855
+  (0.1ms) BEGIN
11856
+  (0.1ms) SAVEPOINT active_record_1
11857
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11858
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11859
+  (0.1ms) SAVEPOINT active_record_1
11860
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11861
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11862
+  (0.1ms) SAVEPOINT active_record_1
11863
+ 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
11864
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11865
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11866
+  (0.2ms) RELEASE SAVEPOINT active_record_1
11867
+  (0.3ms) ROLLBACK
11868
+  (0.1ms) BEGIN
11869
+  (0.1ms) COMMIT
11870
+  (0.1ms) BEGIN
11871
+  (0.1ms) SAVEPOINT active_record_1
11872
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11873
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11874
+  (0.3ms) ROLLBACK
11875
+  (0.1ms) BEGIN
11876
+  (0.1ms) COMMIT
11877
+  (0.1ms) BEGIN
11878
+  (0.1ms) SAVEPOINT active_record_1
11879
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11880
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11881
+  (0.1ms) SAVEPOINT active_record_1
11882
+ 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
11883
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11884
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11885
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11886
+  (0.1ms) SAVEPOINT active_record_1
11887
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11888
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
11889
+  (0.2ms) RELEASE SAVEPOINT active_record_1
11890
+  (0.1ms) SAVEPOINT active_record_1
11891
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 10)
11892
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11893
+  (0.1ms) SAVEPOINT active_record_1
11894
+ SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (35, 9)
11895
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 9
11896
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11897
+  (0.1ms) SAVEPOINT active_record_1
11898
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11899
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
11900
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11901
+  (0.1ms) SAVEPOINT active_record_1
11902
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 11)
11903
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11904
+  (0.1ms) SAVEPOINT active_record_1
11905
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (35, 10)
11906
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 10
11907
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11908
+ 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` = 35 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
11909
+ 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` = 35
11910
+  (0.1ms) SAVEPOINT active_record_1
11911
+ Wordpress::Relationship Load (0.2ms) SELECT `wp_term_relationships`.* FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 35 AND `wp_term_relationships`.`term_taxonomy_id` IN (9, 10)
11912
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 9 LIMIT 1
11913
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 9
11914
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 10 LIMIT 1
11915
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 10
11916
+ SQL (0.2ms) DELETE FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 35 AND `wp_term_relationships`.`term_taxonomy_id` IN (9, 10)
11917
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11918
+ 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` = 9 LIMIT 1
11919
+ 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` = 10 LIMIT 1
11920
+  (0.5ms) ROLLBACK
11921
+  (0.1ms) BEGIN
11922
+  (0.1ms) COMMIT
11923
+  (0.1ms) BEGIN
11924
+  (0.1ms) SAVEPOINT active_record_1
11925
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11926
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11927
+  (0.1ms) SAVEPOINT active_record_1
11928
+ 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
11929
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11930
+ 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', '\'', 26, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11931
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11932
+  (0.1ms) SAVEPOINT active_record_1
11933
+ Wordpress::Term Exists (0.4ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11934
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
11935
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11936
+  (0.1ms) SAVEPOINT active_record_1
11937
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 12)
11938
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11939
+  (0.1ms) SAVEPOINT active_record_1
11940
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (36, 11)
11941
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 11
11942
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11943
+  (0.1ms) SAVEPOINT active_record_1
11944
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11945
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
11946
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11947
+  (0.1ms) SAVEPOINT active_record_1
11948
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 13)
11949
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11950
+  (0.1ms) SAVEPOINT active_record_1
11951
+ SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (36, 12)
11952
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 12
11953
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11954
+ 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` = 36 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
11955
+ 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` = 36
11956
+  (0.1ms) SAVEPOINT active_record_1
11957
+ Wordpress::Relationship Load (0.2ms) SELECT `wp_term_relationships`.* FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 36 AND `wp_term_relationships`.`term_taxonomy_id` IN (11, 12)
11958
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 11 LIMIT 1
11959
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 11
11960
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 12 LIMIT 1
11961
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 12
11962
+ SQL (0.2ms) DELETE FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 36 AND `wp_term_relationships`.`term_taxonomy_id` IN (11, 12)
11963
+ 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` = 36
11964
+ SQL (0.2ms) DELETE FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 36
11965
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11966
+ 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` = 11 LIMIT 1
11967
+ 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` = 12 LIMIT 1
11968
+  (0.5ms) ROLLBACK
11969
+  (0.1ms) BEGIN
11970
+  (0.1ms) COMMIT
11971
+  (0.1ms) BEGIN
11972
+  (0.1ms) SAVEPOINT active_record_1
11973
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
11974
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11975
+  (0.1ms) SAVEPOINT active_record_1
11976
+ 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
11977
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
11978
+ 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', '\'', 27, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
11979
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11980
+  (0.1ms) SAVEPOINT active_record_1
11981
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11982
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
11983
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11984
+  (0.1ms) SAVEPOINT active_record_1
11985
+ SQL (0.3ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 14)
11986
+  (0.2ms) RELEASE SAVEPOINT active_record_1
11987
+  (0.1ms) SAVEPOINT active_record_1
11988
+ SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (37, 13)
11989
+ SQL (0.4ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 13
11990
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11991
+  (0.1ms) SAVEPOINT active_record_1
11992
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
11993
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
11994
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11995
+  (0.1ms) SAVEPOINT active_record_1
11996
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 15)
11997
+  (0.1ms) RELEASE SAVEPOINT active_record_1
11998
+  (0.1ms) SAVEPOINT active_record_1
11999
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (37, 14)
12000
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 14
12001
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12002
+ 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` = 37 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
12003
+ 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
12004
+  (0.4ms) ROLLBACK
12005
+  (0.1ms) BEGIN
12006
+  (0.1ms) COMMIT
12007
+  (0.1ms) BEGIN
12008
+  (0.1ms) SAVEPOINT active_record_1
12009
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12010
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12011
+  (0.1ms) SAVEPOINT active_record_1
12012
+ 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
12013
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12014
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12015
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12016
+  (0.2ms) SAVEPOINT active_record_1
12017
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12018
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
12019
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12020
+  (0.1ms) SAVEPOINT active_record_1
12021
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 16)
12022
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12023
+  (0.1ms) SAVEPOINT active_record_1
12024
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (38, 15)
12025
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 15
12026
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12027
+  (0.1ms) SAVEPOINT active_record_1
12028
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12029
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
12030
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12031
+  (0.1ms) SAVEPOINT active_record_1
12032
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 17)
12033
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12034
+  (0.1ms) SAVEPOINT active_record_1
12035
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (38, 16)
12036
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 16
12037
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12038
+  (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` = 38
12039
+  (0.4ms) ROLLBACK
12040
+  (0.1ms) BEGIN
12041
+  (0.1ms) COMMIT
12042
+  (0.1ms) BEGIN
12043
+ 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
12044
+  (0.1ms) SAVEPOINT active_record_1
12045
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12046
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello, Hello!', 'hello-hello')
12047
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12048
+  (0.1ms) SAVEPOINT active_record_1
12049
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 18, '')
12050
+  (0.2ms) RELEASE SAVEPOINT active_record_1
12051
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 18 LIMIT 1
12052
+  (0.4ms) ROLLBACK
12053
+  (0.1ms) BEGIN
12054
+  (0.1ms) COMMIT
12055
+  (0.1ms) BEGIN
12056
+  (0.1ms) SAVEPOINT active_record_1
12057
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12058
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello Again', 'hello-again')
12059
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12060
+  (0.1ms) SAVEPOINT active_record_1
12061
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Hello Again', 19)
12062
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12063
+ 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 Again' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
12064
+  (0.4ms) ROLLBACK
12065
+  (0.1ms) BEGIN
12066
+  (0.1ms) COMMIT
12067
+  (0.1ms) BEGIN
12068
+  (0.1ms) SAVEPOINT active_record_1
12069
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12070
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello Again', 'hello-again')
12071
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12072
+  (0.1ms) SAVEPOINT active_record_1
12073
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Hello Again', 20)
12074
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12075
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 20 LIMIT 1
12076
+  (0.3ms) ROLLBACK
12077
+  (0.1ms) BEGIN
12078
+  (0.1ms) COMMIT
12079
+  (0.1ms) BEGIN
12080
+  (0.1ms) SAVEPOINT active_record_1
12081
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12082
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12083
+  (0.1ms) SAVEPOINT active_record_1
12084
+ 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
12085
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12086
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12087
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12088
+  (0.4ms) ROLLBACK
12089
+  (0.1ms) BEGIN
12090
+  (0.1ms) COMMIT
12091
+  (0.1ms) BEGIN
12092
+  (0.1ms) SAVEPOINT active_record_1
12093
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12094
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12095
+  (0.1ms) SAVEPOINT active_record_1
12096
+ 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
12097
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12098
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12099
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12100
+  (0.1ms) SAVEPOINT active_record_1
12101
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12102
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
12103
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12104
+  (0.1ms) SAVEPOINT active_record_1
12105
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 21)
12106
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12107
+ 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` = 20 LIMIT 1
12108
+ 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` = 40 AND `wp_term_taxonomy`.`term_taxonomy_id` = 20 LIMIT 1
12109
+ 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` = 40
12110
+  (0.1ms) SAVEPOINT active_record_1
12111
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 40
12112
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (20, 40)
12113
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 20
12114
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12115
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 40 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
12116
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 40 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
12117
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 40 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
12118
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 40
12119
+ 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` = 'Foo' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
12120
+  (0.1ms) SAVEPOINT active_record_1
12121
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12122
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
12123
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12124
+  (0.1ms) SAVEPOINT active_record_1
12125
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Foo', 22)
12126
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12127
+ 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` = 'Bar' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
12128
+  (0.1ms) SAVEPOINT active_record_1
12129
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12130
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
12131
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12132
+  (0.1ms) SAVEPOINT active_record_1
12133
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Bar', 23)
12134
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12135
+ 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` = 21 LIMIT 1
12136
+ 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` = 22 LIMIT 1
12137
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 40 LIMIT 1
12138
+ Wordpress::Category 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 ('category') AND `wp_term_relationships`.`object_id` = 40 AND `wp_term_taxonomy`.`term_taxonomy_id` = 21 LIMIT 1
12139
+ Wordpress::Category 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 ('category') AND `wp_term_relationships`.`object_id` = 40 AND `wp_term_taxonomy`.`term_taxonomy_id` = 22 LIMIT 1
12140
+ 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` = 40
12141
+  (0.1ms) SAVEPOINT active_record_1
12142
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 30 LIMIT 1
12143
+ 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', 30, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '40-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:51:24', '2016-05-13 13:51:24', '', 'ade98748-5930-4f06-b105-a4eac8769dc4', 40)
12144
+ 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` = 40
12145
+ SQL (0.2ms) DELETE FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 20
12146
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 40
12147
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (21, 40)
12148
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 21
12149
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (22, 40)
12150
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 22
12151
+ 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
12152
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12153
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 40 LIMIT 1
12154
+ 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
12155
+ 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` = 40
12156
+ Wordpress::Term Load (0.3ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 22 LIMIT 1
12157
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 23 LIMIT 1
12158
+  (0.5ms) ROLLBACK
12159
+  (0.1ms) BEGIN
12160
+  (0.1ms) COMMIT
12161
+  (0.1ms) BEGIN
12162
+  (0.1ms) SAVEPOINT active_record_1
12163
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12164
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12165
+  (0.1ms) SAVEPOINT active_record_1
12166
+ 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
12167
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12168
+ 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', '\'', 31, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12169
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12170
+  (0.1ms) SAVEPOINT active_record_1
12171
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12172
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
12173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12174
+  (0.1ms) SAVEPOINT active_record_1
12175
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 24)
12176
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12177
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 24 LIMIT 1
12178
+ 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` = 'Foobar' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
12179
+ 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` = 23 LIMIT 1
12180
+ 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` = 42 AND `wp_term_taxonomy`.`term_taxonomy_id` = 23 LIMIT 1
12181
+ 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` = 42
12182
+  (0.1ms) SAVEPOINT active_record_1
12183
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 42
12184
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (23, 42)
12185
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 23
12186
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12187
+ 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` = 42
12188
+  (0.5ms) ROLLBACK
12189
+  (0.1ms) BEGIN
12190
+  (0.1ms) COMMIT
12191
+  (0.1ms) BEGIN
12192
+  (0.1ms) SAVEPOINT active_record_1
12193
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12194
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12195
+  (0.1ms) SAVEPOINT active_record_1
12196
+ 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
12197
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12198
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12199
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12200
+  (0.1ms) SAVEPOINT active_record_1
12201
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12202
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
12203
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12204
+  (0.1ms) SAVEPOINT active_record_1
12205
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 25)
12206
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12207
+ 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` = 24 LIMIT 1
12208
+ 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` = 43 AND `wp_term_taxonomy`.`term_taxonomy_id` = 24 LIMIT 1
12209
+ 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` = 43
12210
+  (0.1ms) SAVEPOINT active_record_1
12211
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 43
12212
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (24, 43)
12213
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 24
12214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12215
+ 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` = 43
12216
+  (0.5ms) ROLLBACK
12217
+  (0.1ms) BEGIN
12218
+  (0.1ms) COMMIT
12219
+  (0.1ms) BEGIN
12220
+  (0.1ms) SAVEPOINT active_record_1
12221
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12222
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12223
+  (0.1ms) SAVEPOINT active_record_1
12224
+ 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
12225
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12226
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12227
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12228
+  (0.1ms) SAVEPOINT active_record_1
12229
+ Wordpress::Term Exists (0.5ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12230
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
12231
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12232
+  (0.1ms) SAVEPOINT active_record_1
12233
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 26)
12234
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12235
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 26 LIMIT 1
12236
+ 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
12237
+ 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` = 25 LIMIT 1
12238
+ 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` = 44 AND `wp_term_taxonomy`.`term_taxonomy_id` = 25 LIMIT 1
12239
+ 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
12240
+  (0.1ms) SAVEPOINT active_record_1
12241
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 44
12242
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (25, 44)
12243
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 25
12244
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12245
+ 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` = 44
12246
+  (0.4ms) ROLLBACK
12247
+  (0.1ms) BEGIN
12248
+  (0.1ms) COMMIT
12249
+  (0.1ms) BEGIN
12250
+  (0.1ms) SAVEPOINT active_record_1
12251
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12252
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12253
+  (0.1ms) SAVEPOINT active_record_1
12254
+ 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
12255
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12256
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12257
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12258
+  (0.1ms) SAVEPOINT active_record_1
12259
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12260
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
12261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12262
+  (0.1ms) SAVEPOINT active_record_1
12263
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 27)
12264
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12265
+  (0.1ms) SAVEPOINT active_record_1
12266
+ SQL (0.4ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (45, 26)
12267
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 26
12268
+  (0.2ms) RELEASE SAVEPOINT active_record_1
12269
+  (0.1ms) SAVEPOINT active_record_1
12270
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 45
12271
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12272
+ Wordpress::Category 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 ('category') AND `wp_term_relationships`.`object_id` = 45 AND `wp_term_taxonomy`.`term_taxonomy_id` = 26 LIMIT 1
12273
+  (0.4ms) ROLLBACK
12274
+  (0.1ms) BEGIN
12275
+  (0.1ms) COMMIT
12276
+  (0.1ms) BEGIN
12277
+  (0.1ms) SAVEPOINT active_record_1
12278
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12279
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12280
+  (0.1ms) SAVEPOINT active_record_1
12281
+ 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
12282
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12283
+ 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', '\'', 35, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12284
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12285
+  (0.1ms) SAVEPOINT active_record_1
12286
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12287
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
12288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12289
+  (0.1ms) SAVEPOINT active_record_1
12290
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 28)
12291
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12292
+ 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` = 27 LIMIT 1
12293
+ 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` = 46 AND `wp_term_taxonomy`.`term_taxonomy_id` = 27 LIMIT 1
12294
+ 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` = 46
12295
+  (0.1ms) SAVEPOINT active_record_1
12296
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 46
12297
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (27, 46)
12298
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 27
12299
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12300
+ 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
12301
+  (0.4ms) ROLLBACK
12302
+  (0.1ms) BEGIN
12303
+  (0.1ms) COMMIT
12304
+  (0.1ms) BEGIN
12305
+  (0.1ms) SAVEPOINT active_record_1
12306
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12307
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12308
+  (0.1ms) SAVEPOINT active_record_1
12309
+ 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
12310
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12311
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12312
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12313
+  (0.1ms) SAVEPOINT active_record_1
12314
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12315
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
12316
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12317
+  (0.1ms) SAVEPOINT active_record_1
12318
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 29)
12319
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12320
+  (0.1ms) SAVEPOINT active_record_1
12321
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (47, 28)
12322
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 28
12323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12324
+  (0.1ms) SAVEPOINT active_record_1
12325
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 47
12326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12327
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 29 LIMIT 1
12328
+ 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` = 47
12329
+  (0.4ms) ROLLBACK
12330
+  (0.1ms) BEGIN
12331
+  (0.1ms) COMMIT
12332
+  (0.1ms) BEGIN
12333
+  (0.1ms) SAVEPOINT active_record_1
12334
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12335
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12336
+  (0.1ms) SAVEPOINT active_record_1
12337
+ 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
12338
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12339
+ 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', '\'', 37, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12341
+  (0.1ms) SAVEPOINT active_record_1
12342
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12343
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
12344
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12345
+  (0.1ms) SAVEPOINT active_record_1
12346
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 30)
12347
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12348
+  (0.1ms) SAVEPOINT active_record_1
12349
+ SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (48, 29)
12350
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 29
12351
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12352
+ 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
12353
+  (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 ('category') AND `wp_term_relationships`.`object_id` = 48
12354
+ 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` = 48 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
12355
+ 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` = 48 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
12356
+  (6.3ms) ROLLBACK
12357
+  (0.2ms) BEGIN
12358
+  (0.1ms) COMMIT
12359
+  (0.1ms) BEGIN
12360
+  (0.1ms) SAVEPOINT active_record_1
12361
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12362
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12363
+  (0.1ms) SAVEPOINT active_record_1
12364
+ 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
12365
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12366
+ 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, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12367
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12368
+ 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
12369
+  (0.1ms) SAVEPOINT active_record_1
12370
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12371
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
12372
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12373
+  (0.1ms) SAVEPOINT active_record_1
12374
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 31, '')
12375
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12376
+ 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
12377
+  (0.1ms) SAVEPOINT active_record_1
12378
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12379
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
12380
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12381
+  (0.1ms) SAVEPOINT active_record_1
12382
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 32, '')
12383
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12384
+ 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` = 49 AND `wp_term_taxonomy`.`term_taxonomy_id` = 30 LIMIT 1
12385
+ 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` = 49 AND `wp_term_taxonomy`.`term_taxonomy_id` = 31 LIMIT 1
12386
+ 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` = 49
12387
+  (0.1ms) SAVEPOINT active_record_1
12388
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:51:24', `post_modified_gmt` = '2016-05-13 13:51:24' WHERE `wp_posts`.`ID` = 49
12389
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (30, 49)
12390
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 30
12391
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (31, 49)
12392
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 31
12393
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12394
+  (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` = 49
12395
+  (0.5ms) ROLLBACK
12396
+  (0.1ms) BEGIN
12397
+  (0.1ms) COMMIT
12398
+  (0.1ms) BEGIN
12399
+  (0.1ms) SAVEPOINT active_record_1
12400
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:51:24')
12401
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12402
+  (0.1ms) SAVEPOINT active_record_1
12403
+ 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
12404
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
12405
+ 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', '\'', 39, '2016-05-13 13:51:24', '2016-05-13 13:51:24', 'test', '2016-05-13 13:51:24', '2016-05-13 13:51:24')
12406
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12407
+  (0.1ms) SAVEPOINT active_record_1
12408
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
12409
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo54', 'foo54')
12410
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12411
+  (0.1ms) SAVEPOINT active_record_1
12412
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo54', 33)
12413
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12414
+  (0.1ms) SAVEPOINT active_record_1
12415
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (50, 32)
12416
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 32
12417
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12418
+  (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` = 50
12419
+  (0.1ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 50
12420
+ 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` = 50 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
12421
+  (0.4ms) ROLLBACK
12422
+  (0.1ms) BEGIN
12423
+  (0.1ms) COMMIT
12424
+  (0.1ms) BEGIN
12425
+  (0.1ms) ROLLBACK
12426
+  (0.1ms) BEGIN
12427
+  (0.1ms) COMMIT
12428
+  (0.1ms) BEGIN
12429
+  (0.1ms) ROLLBACK