rails_wordpress 0.1.1 → 0.1.2

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: 418ae80d60dbcbb1dd6b14f0044103542aa240e7
4
- data.tar.gz: 7a9fc2d46835f61c191932d2dbe61b9e86609848
3
+ metadata.gz: d1d4d8418b4cd856648badaffd5b4cea54c2ab20
4
+ data.tar.gz: 707642f01f491c2d3acdf9732f65501c4eb8c034
5
5
  SHA512:
6
- metadata.gz: ca99c8da8183d6d188d746a95caba4dddb0c657af9b2d74674f66bbd5ab374d73ac64dda71ee57ca18182683cced46aea9c7e35b958f74f4a39023bfe7a20772
7
- data.tar.gz: 63caece42bf7d16e6c943a4d881cf99a63d63b008aa978a6c3eebba3d3310143710dec5bb973c0f66bfd8e664696ac99d8b480885f9b118389d5c58e061f65d4
6
+ metadata.gz: 24840fbe38cf5cca5b6d3cc14843ec8e6f7fb96be88e608f252bb4300605b94195603eb819e3ba99e4a96be8f4b9ea22c530b3d7c0d87c9d01793768b81fe02f
7
+ data.tar.gz: 95e167bf7e2a11fdca6d21203ee0ac30d141d0ab7440f1c260d26c8a3e31de33b8cd3bd082a1623cdfdccba546958d27c8ea799430f4463c8314e2232e13db4d
@@ -1,4 +1,5 @@
1
1
  module Wordpress
2
2
  class Revision < WpPost
3
+ scope :exclude_autosaves, -> { where("post_name NOT LIKE '%autosave%'") }
3
4
  end
4
5
  end
@@ -1,3 +1,3 @@
1
1
  module Wordpress
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -19585,3 +19585,2247 @@ Mysql2::Error: Unknown column 'wp_posts.user_id' in 'where clause': SELECT `wp_p
19585
19585
   (0.2ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 56
19586
19586
  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` = 56 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
19587
19587
   (0.3ms) ROLLBACK
19588
+ ActiveRecord::SchemaMigration Load (25.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
19589
+  (73.0ms) DROP DATABASE IF EXISTS `wp_test`
19590
+  (4.9ms) CREATE DATABASE `wp_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
19591
+  (33.8ms) 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
19592
+  (12.0ms) CREATE INDEX `comment_id` USING btree ON `wp_commentmeta` (`comment_id`)
19593
+  (11.2ms) CREATE INDEX `meta_key` USING btree ON `wp_commentmeta` (`meta_key`) 
19594
+  (9.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
19595
+  (10.3ms) CREATE INDEX `comment_approved_date_gmt` USING btree ON `wp_comments` (`comment_approved`, `comment_date_gmt`) 
19596
+  (9.8ms) CREATE INDEX `comment_author_email` USING btree ON `wp_comments` (`comment_author_email`(10))
19597
+  (9.1ms) CREATE INDEX `comment_date_gmt` USING btree ON `wp_comments` (`comment_date_gmt`) 
19598
+  (10.5ms) CREATE INDEX `comment_parent` USING btree ON `wp_comments` (`comment_parent`)
19599
+  (9.6ms) CREATE INDEX `comment_post_ID` USING btree ON `wp_comments` (`comment_post_ID`) 
19600
+  (10.9ms) 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
19601
+  (10.8ms) CREATE INDEX `link_visible` USING btree ON `wp_links` (`link_visible`) 
19602
+  (9.6ms) 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
19603
+  (12.0ms) CREATE UNIQUE INDEX `option_name` USING btree ON `wp_options` (`option_name`) 
19604
+  (12.3ms) 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
19605
+  (11.0ms) CREATE INDEX `meta_key` USING btree ON `wp_postmeta` (`meta_key`) 
19606
+  (10.6ms) CREATE INDEX `post_id` USING btree ON `wp_postmeta` (`post_id`)
19607
+  (12.2ms) 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
19608
+  (11.1ms) CREATE INDEX `post_author` USING btree ON `wp_posts` (`post_author`)
19609
+  (12.2ms) CREATE INDEX `post_name` USING btree ON `wp_posts` (`post_name`) 
19610
+  (11.5ms) CREATE INDEX `post_parent` USING btree ON `wp_posts` (`post_parent`)
19611
+  (10.8ms) CREATE INDEX `type_status_date` USING btree ON `wp_posts` (`post_type`, `post_status`, `post_date`, `ID`) 
19612
+  (10.3ms) 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
19613
+  (11.3ms) CREATE INDEX `term_taxonomy_id` USING btree ON `wp_term_relationships` (`term_taxonomy_id`) 
19614
+  (33.5ms) CREATE TABLE `wp_term_taxonomy` (`term_taxonomy_id` int(11) auto_increment PRIMARY KEY, `term_id` bigint DEFAULT 0 NOT NULL, `taxonomy` varchar(32) DEFAULT '' NOT NULL, `description` longtext NOT NULL, `parent` bigint DEFAULT 0 NOT NULL, `count` bigint DEFAULT 0 NOT NULL) ENGINE=InnoDB
19615
+  (11.5ms) CREATE INDEX `taxonomy` USING btree ON `wp_term_taxonomy` (`taxonomy`) 
19616
+  (11.5ms) CREATE UNIQUE INDEX `term_id_taxonomy` USING btree ON `wp_term_taxonomy` (`term_id`, `taxonomy`)
19617
+  (15.3ms) 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
19618
+  (13.2ms) CREATE INDEX `name` USING btree ON `wp_terms` (`name`)
19619
+  (11.6ms) CREATE UNIQUE INDEX `slug` USING btree ON `wp_terms` (`slug`) 
19620
+  (12.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
19621
+  (9.9ms) CREATE INDEX `meta_key` USING btree ON `wp_usermeta` (`meta_key`) 
19622
+  (11.6ms) CREATE INDEX `user_id` USING btree ON `wp_usermeta` (`user_id`)
19623
+  (11.5ms) 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
19624
+  (11.8ms) CREATE INDEX `user_login_key` USING btree ON `wp_users` (`user_login`)
19625
+  (11.0ms) CREATE INDEX `user_nicename` USING btree ON `wp_users` (`user_nicename`) 
19626
+  (11.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
19627
+  (14.2ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
19628
+  (0.2ms) SELECT version FROM `schema_migrations`
19629
+  (4.5ms) INSERT INTO `schema_migrations` (version) VALUES ('0')
19630
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
19631
+  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
19632
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
19633
+  (3791.4ms) SELECT * FROM information_schema.tables
19634
+  (1.0ms) SELECT table_name FROM information_schema.tables WHERE table_schema = 'wp_test' AND table_rows > 0
19635
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 1
19636
+  (0.1ms) BEGIN
19637
+  (0.1ms) COMMIT
19638
+  (0.1ms) BEGIN
19639
+  (0.2ms) SAVEPOINT active_record_1
19640
+ SQL (0.4ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19641
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19642
+  (0.1ms) SAVEPOINT active_record_1
19643
+ 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
19644
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19645
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19646
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19647
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 1 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19648
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 1 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19649
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 1 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19650
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 1
19651
+  (6.2ms) ROLLBACK
19652
+  (0.1ms) BEGIN
19653
+  (0.1ms) COMMIT
19654
+  (0.1ms) BEGIN
19655
+  (0.1ms) SAVEPOINT active_record_1
19656
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19657
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19658
+  (0.1ms) SAVEPOINT active_record_1
19659
+ 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
19660
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19661
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19662
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19663
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 2 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19664
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 2 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19665
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 2 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19666
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 2
19667
+  (0.1ms) SAVEPOINT active_record_1
19668
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 2 LIMIT 1
19669
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 2 LIMIT 1
19670
+ 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', 2, '2016-07-17 22:42:39', '2016-07-17 22:42:39', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '2-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', '2504c55f-bb5b-4892-9a30-79672e20ed77', 2)
19671
+ 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` = 2
19672
+ 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` = 2
19673
+ SQL (0.3ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 2
19674
+ 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
19675
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19676
+  (6.2ms) ROLLBACK
19677
+  (0.1ms) BEGIN
19678
+  (0.1ms) COMMIT
19679
+  (0.1ms) BEGIN
19680
+  (0.1ms) SAVEPOINT active_record_1
19681
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19682
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19683
+  (0.1ms) SAVEPOINT active_record_1
19684
+ 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
19685
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19686
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19687
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19688
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 4 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19689
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 4 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19690
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 4 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19691
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 4
19692
+  (6.1ms) ROLLBACK
19693
+  (0.1ms) BEGIN
19694
+  (0.1ms) COMMIT
19695
+  (0.1ms) BEGIN
19696
+  (0.1ms) SAVEPOINT active_record_1
19697
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19698
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19699
+  (0.1ms) SAVEPOINT active_record_1
19700
+ 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
19701
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19702
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19703
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19704
+ Wordpress::Revision Load (0.4ms) 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
19705
+ Wordpress::Revision Load (0.3ms) 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
19706
+ Wordpress::Revision Load (0.3ms) 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
19707
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 5
19708
+  (0.1ms) SAVEPOINT active_record_1
19709
+ Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 5 LIMIT 1
19710
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 4 LIMIT 1
19711
+ SQL (0.3ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 4, '2016-07-17 22:42:39', '2016-07-17 22:42:39', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '5-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', '4a01d69d-1924-4125-b725-9f70663e496a', 5)
19712
+ 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` = 5
19713
+ 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` = 5
19714
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 5
19715
+ 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
19716
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19717
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 5
19718
+  (0.3ms) ROLLBACK
19719
+  (0.1ms) BEGIN
19720
+  (0.1ms) COMMIT
19721
+  (0.1ms) BEGIN
19722
+  (0.1ms) SAVEPOINT active_record_1
19723
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19724
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19725
+  (0.1ms) SAVEPOINT active_record_1
19726
+ 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
19727
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19728
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19729
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19730
+  (0.1ms) SAVEPOINT active_record_1
19731
+ SQL (0.3ms) UPDATE `wp_posts` SET `post_date` = '2009-01-01 00:00:00', `post_modified` = '2010-01-01 00:00:00', `post_modified_gmt` = '2010-01-01 00:00:00' WHERE `wp_posts`.`ID` = 7
19732
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19733
+ Wordpress::Revision Load (0.5ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19734
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19735
+  (0.3ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7
19736
+  (0.2ms) SAVEPOINT active_record_1
19737
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 7 LIMIT 1
19738
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 5 LIMIT 1
19739
+ 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', 5, '2009-01-01 00:00:00', '2016-07-17 22:42:39', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '7-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', '2be50597-86a6-489a-b3fa-3c4ca25d57f2', 7)
19740
+ 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` = 7
19741
+ 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` = 7
19742
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 7
19743
+ 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
19744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19745
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19746
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19747
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7
19748
+  (0.1ms) SAVEPOINT active_record_1
19749
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 7 LIMIT 1
19750
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 5 LIMIT 1
19751
+ 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', 5, '2009-01-01 00:00:00', '2016-07-17 22:42:39', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '7-revision-v2', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', '7b29f057-acfd-4337-8b52-f007422e50bc', 7)
19752
+ Wordpress::PostTag Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 7
19753
+ 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` = 7
19754
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 7
19755
+ 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
19756
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19757
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 7 LIMIT 1
19758
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19759
+  (4.6ms) ROLLBACK
19760
+  (0.1ms) BEGIN
19761
+  (0.1ms) COMMIT
19762
+  (0.1ms) BEGIN
19763
+  (0.1ms) SAVEPOINT active_record_1
19764
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19765
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19766
+  (0.1ms) SAVEPOINT active_record_1
19767
+ 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
19768
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19769
+ 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', '\'', 6, '2016-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19770
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19771
+  (0.1ms) SAVEPOINT active_record_1
19772
+ 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` = 10
19773
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19774
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19775
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19776
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10
19777
+  (0.1ms) SAVEPOINT active_record_1
19778
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 10 LIMIT 1
19779
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 6 LIMIT 1
19780
+ 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, '2009-01-01 00:00:00', '2016-07-17 22:42:39', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '10-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', 'cfb19a42-7168-405d-8c4b-cfb810c04a17', 10)
19781
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 10
19782
+ 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` = 10
19783
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 10
19784
+ 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
19785
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19786
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19787
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19788
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10
19789
+  (0.1ms) SAVEPOINT active_record_1
19790
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 10 LIMIT 1
19791
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 6 LIMIT 1
19792
+ 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, '2009-01-01 00:00:00', '2016-07-17 22:42:39', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '10-revision-v2', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', '0964b895-584d-4c73-8cc2-e6226868dbc5', 10)
19793
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 10
19794
+ 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` = 10
19795
+ SQL (0.3ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 10
19796
+ 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
19797
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19798
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 10 LIMIT 1
19799
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
19800
+  (0.4ms) ROLLBACK
19801
+  (0.1ms) BEGIN
19802
+  (0.1ms) COMMIT
19803
+  (0.1ms) BEGIN
19804
+  (0.1ms) SAVEPOINT active_record_1
19805
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19806
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19807
+  (0.1ms) SAVEPOINT active_record_1
19808
+ 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
19809
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19810
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19811
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19812
+ 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
19813
+ 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
19814
+ 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
19815
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 13
19816
+  (0.1ms) SAVEPOINT active_record_1
19817
+ Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 13 LIMIT 1
19818
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 7 LIMIT 1
19819
+ 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', 7, '2016-07-17 22:42:39', '2016-07-17 22:42:39', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '13-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', '7d007070-10ba-448b-a83e-9ccbcc989f3a', 13)
19820
+ 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` = 13
19821
+ 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` = 13
19822
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 13
19823
+ 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
19824
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19825
+ 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
19826
+  (0.3ms) ROLLBACK
19827
+  (0.1ms) BEGIN
19828
+  (0.1ms) COMMIT
19829
+  (0.1ms) BEGIN
19830
+  (0.1ms) SAVEPOINT active_record_1
19831
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19832
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19833
+  (0.1ms) SAVEPOINT active_record_1
19834
+ 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
19835
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19836
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19837
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19838
+ 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
19839
+ 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
19840
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 15
19841
+  (0.3ms) ROLLBACK
19842
+  (0.1ms) BEGIN
19843
+  (0.1ms) COMMIT
19844
+  (0.1ms) BEGIN
19845
+  (0.1ms) SAVEPOINT active_record_1
19846
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19847
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19848
+  (0.1ms) SAVEPOINT active_record_1
19849
+ 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
19850
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19851
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19852
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19853
+  (0.1ms) SAVEPOINT active_record_1
19854
+ 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` = 16
19855
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19856
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 16 LIMIT 1
19857
+ 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
19858
+ 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
19859
+ 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
19860
+ 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
19861
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 16
19862
+  (0.1ms) SAVEPOINT active_record_1
19863
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 16 LIMIT 1
19864
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 9 LIMIT 1
19865
+ 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-07-17 22:42:39', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '16-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', '4ebb81e9-dc62-4c7c-92bb-96696dae1f82', 16)
19866
+ 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
19867
+ 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
19868
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 16
19869
+ 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
19870
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19871
+ 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
19872
+  (0.3ms) ROLLBACK
19873
+  (0.1ms) BEGIN
19874
+  (0.1ms) COMMIT
19875
+  (0.1ms) BEGIN
19876
+  (0.1ms) SAVEPOINT active_record_1
19877
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19878
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19879
+  (0.1ms) SAVEPOINT active_record_1
19880
+ 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
19881
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19882
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19883
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19884
+ 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
19885
+ 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
19886
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18
19887
+  (0.1ms) SAVEPOINT active_record_1
19888
+ Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 18 LIMIT 1
19889
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 10 LIMIT 1
19890
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '18-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', '064bbe6b-0cd6-43bd-91de-cd7b429b99d2', 18)
19891
+ 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` = 18
19892
+ 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
19893
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 18
19894
+ 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
19895
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19896
+ 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
19897
+  (0.4ms) ROLLBACK
19898
+  (0.1ms) BEGIN
19899
+  (0.1ms) COMMIT
19900
+  (0.1ms) BEGIN
19901
+  (0.1ms) SAVEPOINT active_record_1
19902
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19903
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19904
+  (0.1ms) SAVEPOINT active_record_1
19905
+ 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
19906
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19907
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19908
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19909
+  (0.1ms) SAVEPOINT active_record_1
19910
+ 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
19911
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19912
+ 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
19913
+ 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
19914
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 20
19915
+  (0.1ms) SAVEPOINT active_record_1
19916
+ 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
19917
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 11 LIMIT 1
19918
+ 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, '2009-01-01 00:00:00', '2016-07-17 22:42:39', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '20-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', '3ac2b320-4196-41db-be39-89505b0dc36e', 20)
19919
+ 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
19920
+ 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` = 20
19921
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 20
19922
+ 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
19923
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19924
+ 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
19925
+  (0.3ms) ROLLBACK
19926
+  (0.1ms) BEGIN
19927
+  (0.1ms) COMMIT
19928
+  (0.1ms) BEGIN
19929
+  (0.1ms) SAVEPOINT active_record_1
19930
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19931
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19932
+  (0.1ms) SAVEPOINT active_record_1
19933
+ 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
19934
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19935
+ 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', '\'', 12, '2016-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19936
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19937
+ 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
19938
+ 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
19939
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 22
19940
+  (0.1ms) SAVEPOINT active_record_1
19941
+ 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
19942
+ 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
19943
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 12 LIMIT 1
19944
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '22-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', '59a2d1b3-78da-4a81-be31-622b7f0edbfc', 22)
19945
+ 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
19946
+ 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
19947
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 22
19948
+ 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
19949
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19950
+  (0.1ms) SAVEPOINT active_record_1
19951
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39', `post_name` = 'test' WHERE `wp_posts`.`ID` = 23
19952
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 22
19953
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19954
+ 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
19955
+  (5.7ms) ROLLBACK
19956
+  (0.1ms) BEGIN
19957
+  (0.1ms) COMMIT
19958
+  (0.1ms) BEGIN
19959
+  (0.1ms) SAVEPOINT active_record_1
19960
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19961
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19962
+  (0.1ms) SAVEPOINT active_record_1
19963
+ 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
19964
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19965
+ 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', '\'', 13, '2016-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19966
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19967
+  (0.1ms) SAVEPOINT active_record_1
19968
+ 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
19969
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19970
+ Wordpress::Revision Load (0.3ms) 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
19971
+ Wordpress::Revision Load (0.3ms) 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
19972
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 24
19973
+  (0.1ms) SAVEPOINT active_record_1
19974
+ 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
19975
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 13 LIMIT 1
19976
+ 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-07-17 22:42:39', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '24-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', '135f2707-3dd5-45a2-8ed2-a735de682d5e', 24)
19977
+ 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
19978
+ 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
19979
+ SQL (0.3ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 24
19980
+ 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
19981
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19982
+ 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
19983
+  (0.4ms) ROLLBACK
19984
+  (0.1ms) BEGIN
19985
+  (0.1ms) COMMIT
19986
+  (0.1ms) BEGIN
19987
+  (0.1ms) SAVEPOINT active_record_1
19988
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:42:39', 'ACTIVATIONKEY', 'DISPLAY NAME')
19989
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19990
+  (0.1ms) SAVEPOINT active_record_1
19991
+ 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
19992
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
19993
+ 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-07-17 22:42:39', '2016-07-17 22:42:39', 'test', '2016-07-17 22:42:39', '2016-07-17 22:42:39')
19994
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19995
+  (0.1ms) SAVEPOINT active_record_1
19996
+ SQL (0.3ms) UPDATE `wp_posts` SET `post_date` = '2009-01-01 00:00:00', `post_modified` = '2010-01-01 00:00:00', `post_modified_gmt` = '2010-01-01 00:00:00' WHERE `wp_posts`.`ID` = 26
19997
+  (0.1ms) RELEASE SAVEPOINT active_record_1
19998
+ 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
19999
+ 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
20000
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26
20001
+  (0.1ms) SAVEPOINT active_record_1
20002
+ 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
20003
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 14 LIMIT 1
20004
+ 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-07-17 22:42:39', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '26-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:42:39', '2016-07-17 22:42:39', '', 'a3b94869-9eff-43dd-87d0-2d2a0437a815', 26)
20005
+ 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
20006
+ 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` = 26
20007
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:42:39', `post_modified_gmt` = '2016-07-17 22:42:39' WHERE `wp_posts`.`ID` = 26
20008
+ 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
20009
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20010
+  (0.4ms) ROLLBACK
20011
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
20012
+  (51.7ms) DROP DATABASE IF EXISTS `wp_test`
20013
+  (5.0ms) CREATE DATABASE `wp_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
20014
+  (29.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
20015
+  (11.9ms) CREATE INDEX `comment_id` USING btree ON `wp_commentmeta` (`comment_id`)
20016
+  (11.6ms) CREATE INDEX `meta_key` USING btree ON `wp_commentmeta` (`meta_key`) 
20017
+  (11.8ms) 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
20018
+  (11.9ms) CREATE INDEX `comment_approved_date_gmt` USING btree ON `wp_comments` (`comment_approved`, `comment_date_gmt`) 
20019
+  (11.5ms) CREATE INDEX `comment_author_email` USING btree ON `wp_comments` (`comment_author_email`(10))
20020
+  (12.3ms) CREATE INDEX `comment_date_gmt` USING btree ON `wp_comments` (`comment_date_gmt`) 
20021
+  (11.7ms) CREATE INDEX `comment_parent` USING btree ON `wp_comments` (`comment_parent`)
20022
+  (10.9ms) CREATE INDEX `comment_post_ID` USING btree ON `wp_comments` (`comment_post_ID`) 
20023
+  (10.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
20024
+  (10.3ms) CREATE INDEX `link_visible` USING btree ON `wp_links` (`link_visible`) 
20025
+  (11.1ms) 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
20026
+  (11.5ms) CREATE UNIQUE INDEX `option_name` USING btree ON `wp_options` (`option_name`) 
20027
+  (12.3ms) 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
20028
+  (12.4ms) CREATE INDEX `meta_key` USING btree ON `wp_postmeta` (`meta_key`) 
20029
+  (11.2ms) CREATE INDEX `post_id` USING btree ON `wp_postmeta` (`post_id`)
20030
+  (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
20031
+  (12.7ms) CREATE INDEX `post_author` USING btree ON `wp_posts` (`post_author`)
20032
+  (11.0ms) CREATE INDEX `post_name` USING btree ON `wp_posts` (`post_name`) 
20033
+  (11.3ms) CREATE INDEX `post_parent` USING btree ON `wp_posts` (`post_parent`)
20034
+  (10.7ms) CREATE INDEX `type_status_date` USING btree ON `wp_posts` (`post_type`, `post_status`, `post_date`, `ID`) 
20035
+  (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
20036
+  (10.5ms) CREATE INDEX `term_taxonomy_id` USING btree ON `wp_term_relationships` (`term_taxonomy_id`) 
20037
+  (10.5ms) CREATE TABLE `wp_term_taxonomy` (`term_taxonomy_id` int(11) auto_increment PRIMARY KEY, `term_id` bigint DEFAULT 0 NOT NULL, `taxonomy` varchar(32) DEFAULT '' NOT NULL, `description` longtext NOT NULL, `parent` bigint DEFAULT 0 NOT NULL, `count` bigint DEFAULT 0 NOT NULL) ENGINE=InnoDB
20038
+  (11.0ms) CREATE INDEX `taxonomy` USING btree ON `wp_term_taxonomy` (`taxonomy`) 
20039
+  (11.8ms) CREATE UNIQUE INDEX `term_id_taxonomy` USING btree ON `wp_term_taxonomy` (`term_id`, `taxonomy`)
20040
+  (11.3ms) 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
20041
+  (12.5ms) CREATE INDEX `name` USING btree ON `wp_terms` (`name`)
20042
+  (12.2ms) CREATE UNIQUE INDEX `slug` USING btree ON `wp_terms` (`slug`) 
20043
+  (12.1ms) 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
20044
+  (15.1ms) CREATE INDEX `meta_key` USING btree ON `wp_usermeta` (`meta_key`) 
20045
+  (16.8ms) CREATE INDEX `user_id` USING btree ON `wp_usermeta` (`user_id`)
20046
+  (22.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
20047
+  (11.8ms) CREATE INDEX `user_login_key` USING btree ON `wp_users` (`user_login`)
20048
+  (11.5ms) CREATE INDEX `user_nicename` USING btree ON `wp_users` (`user_nicename`) 
20049
+  (12.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
20050
+  (14.0ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
20051
+  (0.2ms) SELECT version FROM `schema_migrations`
20052
+  (4.4ms) INSERT INTO `schema_migrations` (version) VALUES ('0')
20053
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations`
20054
+  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
20055
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
20056
+  (1657.1ms) SELECT * FROM information_schema.tables
20057
+  (1.2ms) SELECT table_name FROM information_schema.tables WHERE table_schema = 'wp_test' AND table_rows > 0
20058
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 1
20059
+  (0.1ms) BEGIN
20060
+  (0.1ms) COMMIT
20061
+  (0.1ms) BEGIN
20062
+  (0.1ms) SAVEPOINT active_record_1
20063
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:08', 'ACTIVATIONKEY', 'DISPLAY NAME')
20064
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20065
+  (0.1ms) SAVEPOINT active_record_1
20066
+ 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
20067
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20068
+ 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-07-17 22:43:08', '2016-07-17 22:43:08', 'test', '2016-07-17 22:43:08', '2016-07-17 22:43:08')
20069
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20070
+  (5.8ms) ROLLBACK
20071
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations`
20072
+  (41.1ms) DROP DATABASE IF EXISTS `wp_test`
20073
+  (4.8ms) CREATE DATABASE `wp_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
20074
+  (29.0ms) 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
20075
+  (11.9ms) CREATE INDEX `comment_id` USING btree ON `wp_commentmeta` (`comment_id`)
20076
+  (12.7ms) CREATE INDEX `meta_key` USING btree ON `wp_commentmeta` (`meta_key`) 
20077
+  (11.8ms) 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
20078
+  (10.9ms) CREATE INDEX `comment_approved_date_gmt` USING btree ON `wp_comments` (`comment_approved`, `comment_date_gmt`) 
20079
+  (10.8ms) CREATE INDEX `comment_author_email` USING btree ON `wp_comments` (`comment_author_email`(10))
20080
+  (11.4ms) CREATE INDEX `comment_date_gmt` USING btree ON `wp_comments` (`comment_date_gmt`) 
20081
+  (10.9ms) CREATE INDEX `comment_parent` USING btree ON `wp_comments` (`comment_parent`)
20082
+  (11.7ms) CREATE INDEX `comment_post_ID` USING btree ON `wp_comments` (`comment_post_ID`) 
20083
+  (12.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
20084
+  (11.7ms) CREATE INDEX `link_visible` USING btree ON `wp_links` (`link_visible`) 
20085
+  (35.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
20086
+  (11.7ms) CREATE UNIQUE INDEX `option_name` USING btree ON `wp_options` (`option_name`) 
20087
+  (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
20088
+  (11.2ms) CREATE INDEX `meta_key` USING btree ON `wp_postmeta` (`meta_key`) 
20089
+  (11.0ms) CREATE INDEX `post_id` USING btree ON `wp_postmeta` (`post_id`)
20090
+  (11.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
20091
+  (11.2ms) CREATE INDEX `post_author` USING btree ON `wp_posts` (`post_author`)
20092
+  (11.3ms) CREATE INDEX `post_name` USING btree ON `wp_posts` (`post_name`) 
20093
+  (11.9ms) CREATE INDEX `post_parent` USING btree ON `wp_posts` (`post_parent`)
20094
+  (11.7ms) CREATE INDEX `type_status_date` USING btree ON `wp_posts` (`post_type`, `post_status`, `post_date`, `ID`) 
20095
+  (10.7ms) CREATE TABLE `wp_term_relationships` (`object_id` bigint DEFAULT 0 NOT NULL, `term_taxonomy_id` bigint DEFAULT 0 NOT NULL, `term_order` int(11) DEFAULT 0 NOT NULL) ENGINE=InnoDB
20096
+  (10.9ms) CREATE INDEX `term_taxonomy_id` USING btree ON `wp_term_relationships` (`term_taxonomy_id`) 
20097
+  (11.1ms) 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
20098
+  (10.9ms) CREATE INDEX `taxonomy` USING btree ON `wp_term_taxonomy` (`taxonomy`) 
20099
+  (19.7ms) CREATE UNIQUE INDEX `term_id_taxonomy` USING btree ON `wp_term_taxonomy` (`term_id`, `taxonomy`)
20100
+  (25.7ms) 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
20101
+  (18.4ms) CREATE INDEX `name` USING btree ON `wp_terms` (`name`)
20102
+  (17.5ms) CREATE UNIQUE INDEX `slug` USING btree ON `wp_terms` (`slug`) 
20103
+  (23.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
20104
+  (15.5ms) CREATE INDEX `meta_key` USING btree ON `wp_usermeta` (`meta_key`) 
20105
+  (15.5ms) CREATE INDEX `user_id` USING btree ON `wp_usermeta` (`user_id`)
20106
+  (15.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
20107
+  (16.9ms) CREATE INDEX `user_login_key` USING btree ON `wp_users` (`user_login`)
20108
+  (16.0ms) CREATE INDEX `user_nicename` USING btree ON `wp_users` (`user_nicename`) 
20109
+  (19.1ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
20110
+  (18.9ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
20111
+  (0.2ms) SELECT version FROM `schema_migrations`
20112
+  (8.1ms) INSERT INTO `schema_migrations` (version) VALUES ('0')
20113
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
20114
+  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
20115
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
20116
+  (1012.2ms) SELECT * FROM information_schema.tables
20117
+  (1.2ms) SELECT table_name FROM information_schema.tables WHERE table_schema = 'wp_test' AND table_rows > 0
20118
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 1
20119
+  (0.1ms) BEGIN
20120
+  (0.1ms) COMMIT
20121
+  (0.1ms) BEGIN
20122
+  (0.1ms) SAVEPOINT active_record_1
20123
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20124
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20125
+  (0.1ms) SAVEPOINT active_record_1
20126
+ 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
20127
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20128
+ SQL (0.4ms) 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-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20129
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20130
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 1 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20131
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 1 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20132
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 1 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20133
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 1
20134
+  (0.2ms) SAVEPOINT active_record_1
20135
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 1 LIMIT 1
20136
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 1 LIMIT 1
20137
+ SQL (0.3ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 1, '2016-07-17 22:43:14', '2016-07-17 22:43:14', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '1-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', '881b221b-50e9-42b0-a311-bb1913409609', 1)
20138
+ 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
20139
+ 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` = 1
20140
+ SQL (0.3ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 1
20141
+ 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
20142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20143
+  (6.3ms) ROLLBACK
20144
+  (0.1ms) BEGIN
20145
+  (0.1ms) COMMIT
20146
+  (0.1ms) BEGIN
20147
+  (0.1ms) SAVEPOINT active_record_1
20148
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20149
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20150
+  (0.1ms) SAVEPOINT active_record_1
20151
+ 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
20152
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20153
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20154
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20155
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 3 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20156
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 3 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20157
+ Wordpress::Revision Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 3 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20158
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 3
20159
+  (8.4ms) ROLLBACK
20160
+  (0.1ms) BEGIN
20161
+  (0.1ms) COMMIT
20162
+  (0.1ms) BEGIN
20163
+  (0.1ms) SAVEPOINT active_record_1
20164
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20165
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20166
+  (0.1ms) SAVEPOINT active_record_1
20167
+ 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
20168
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20169
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20171
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 4 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20172
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 4 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20173
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 4 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20174
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 4
20175
+  (0.1ms) SAVEPOINT active_record_1
20176
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 4 LIMIT 1
20177
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 3 LIMIT 1
20178
+ 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', 3, '2016-07-17 22:43:14', '2016-07-17 22:43:14', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '4-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', '9e48e37a-25a7-46c7-8680-e9c46f23c189', 4)
20179
+ 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` = 4
20180
+ 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` = 4
20181
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 4
20182
+ 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
20183
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20184
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 4
20185
+  (0.4ms) ROLLBACK
20186
+  (0.1ms) BEGIN
20187
+  (0.1ms) COMMIT
20188
+  (0.1ms) BEGIN
20189
+  (0.1ms) SAVEPOINT active_record_1
20190
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20191
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20192
+  (0.1ms) SAVEPOINT active_record_1
20193
+ 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
20194
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20195
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20196
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20197
+ Wordpress::Revision Load (0.3ms) 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
20198
+ 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
20199
+ 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
20200
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 6
20201
+  (0.4ms) ROLLBACK
20202
+  (0.1ms) BEGIN
20203
+  (0.1ms) COMMIT
20204
+  (0.1ms) BEGIN
20205
+  (0.1ms) SAVEPOINT active_record_1
20206
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20207
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20208
+  (0.1ms) SAVEPOINT active_record_1
20209
+ 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
20210
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20211
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20212
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20213
+  (0.1ms) SAVEPOINT active_record_1
20214
+ 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` = 7
20215
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20216
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20217
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20218
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7
20219
+  (0.1ms) SAVEPOINT active_record_1
20220
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 7 LIMIT 1
20221
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 5 LIMIT 1
20222
+ 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', 5, '2009-01-01 00:00:00', '2016-07-17 22:43:14', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '7-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', 'b4158d35-03ab-410f-8583-010e41cd998f', 7)
20223
+ 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` = 7
20224
+ 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` = 7
20225
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 7
20226
+ 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
20227
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20228
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20229
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20230
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7
20231
+  (0.1ms) SAVEPOINT active_record_1
20232
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 7 LIMIT 1
20233
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 5 LIMIT 1
20234
+ 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', 5, '2009-01-01 00:00:00', '2016-07-17 22:43:14', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '7-revision-v2', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', 'faec5ecb-b558-43be-a4cd-be5fd8e0384b', 7)
20235
+ 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` = 7
20236
+ 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` = 7
20237
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 7
20238
+ 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
20239
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20240
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 7 LIMIT 1
20241
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 7 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20242
+  (0.5ms) ROLLBACK
20243
+  (0.1ms) BEGIN
20244
+  (0.1ms) COMMIT
20245
+  (0.1ms) BEGIN
20246
+  (0.1ms) SAVEPOINT active_record_1
20247
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20248
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20249
+  (0.1ms) SAVEPOINT active_record_1
20250
+ 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
20251
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20252
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20253
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20254
+  (0.1ms) SAVEPOINT active_record_1
20255
+ 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` = 10
20256
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20257
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20258
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20259
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10
20260
+  (0.1ms) SAVEPOINT active_record_1
20261
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 10 LIMIT 1
20262
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 6 LIMIT 1
20263
+ 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, '2009-01-01 00:00:00', '2016-07-17 22:43:14', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '10-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', '457aa9d5-347e-4d7e-a1a8-ba2cb341c938', 10)
20264
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 10
20265
+ 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` = 10
20266
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 10
20267
+ 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
20268
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20269
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20270
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20271
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10
20272
+  (0.1ms) SAVEPOINT active_record_1
20273
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 10 LIMIT 1
20274
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 6 LIMIT 1
20275
+ 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, '2009-01-01 00:00:00', '2016-07-17 22:43:14', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '10-revision-v2', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', 'e92bb2f6-ab06-4781-b9a8-dbf1b9c5f28f', 10)
20276
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 10
20277
+ 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` = 10
20278
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 10
20279
+ 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
20280
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20281
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 10 LIMIT 1
20282
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20283
+  (0.3ms) ROLLBACK
20284
+  (0.1ms) BEGIN
20285
+  (0.1ms) COMMIT
20286
+  (0.1ms) BEGIN
20287
+  (0.1ms) SAVEPOINT active_record_1
20288
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20289
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20290
+  (0.1ms) SAVEPOINT active_record_1
20291
+ 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
20292
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20293
+ 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', '\'', 7, '2016-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20294
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20295
+ 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
20296
+ 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
20297
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 13
20298
+  (0.3ms) ROLLBACK
20299
+  (0.1ms) BEGIN
20300
+  (0.1ms) COMMIT
20301
+  (0.1ms) BEGIN
20302
+  (0.1ms) SAVEPOINT active_record_1
20303
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20305
+  (0.1ms) SAVEPOINT active_record_1
20306
+ 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
20307
+ Wordpress::User Load (0.3ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20308
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20309
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20310
+  (0.1ms) SAVEPOINT active_record_1
20311
+ 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
20312
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20313
+ 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
20314
+ 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
20315
+ 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
20316
+ 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
20317
+ 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
20318
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 14
20319
+  (0.1ms) SAVEPOINT active_record_1
20320
+ Wordpress::Post Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 14 LIMIT 1
20321
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 8 LIMIT 1
20322
+ 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, '2009-01-01 00:00:00', '2016-07-17 22:43:14', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '14-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', '3fbc6d7d-885e-4067-8d04-bf0727339eaa', 14)
20323
+ 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
20324
+ 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
20325
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 14
20326
+ 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
20327
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20328
+ Wordpress::Revision Load (0.3ms) 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
20329
+  (0.4ms) ROLLBACK
20330
+  (0.1ms) BEGIN
20331
+  (0.1ms) COMMIT
20332
+  (0.0ms) BEGIN
20333
+  (0.1ms) SAVEPOINT active_record_1
20334
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20335
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20336
+  (0.1ms) SAVEPOINT active_record_1
20337
+ 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
20338
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20339
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20341
+ 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
20342
+ 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
20343
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 16
20344
+  (0.1ms) SAVEPOINT active_record_1
20345
+ Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 16 LIMIT 1
20346
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 9 LIMIT 1
20347
+ 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, '2016-07-17 22:43:14', '2016-07-17 22:43:14', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '16-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', '46d05b9c-ce9f-4922-ae6b-f722b04d89c5', 16)
20348
+ 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
20349
+ 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
20350
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 16
20351
+ 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
20352
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20353
+ Wordpress::Revision Load (0.3ms) 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
20354
+  (0.4ms) ROLLBACK
20355
+  (0.1ms) BEGIN
20356
+  (0.1ms) COMMIT
20357
+  (0.1ms) BEGIN
20358
+  (0.1ms) SAVEPOINT active_record_1
20359
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20360
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20361
+  (0.1ms) SAVEPOINT active_record_1
20362
+ 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
20363
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20364
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20365
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20366
+ 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
20367
+ 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
20368
+ 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
20369
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18
20370
+  (0.1ms) SAVEPOINT active_record_1
20371
+ 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
20372
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 10 LIMIT 1
20373
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '18-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', 'f37d4cce-2dc0-4461-a3b0-10921bcaf2f7', 18)
20374
+ 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
20375
+ 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
20376
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 18
20377
+ 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
20378
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20379
+ 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
20380
+  (0.5ms) ROLLBACK
20381
+  (0.1ms) BEGIN
20382
+  (0.1ms) COMMIT
20383
+  (0.1ms) BEGIN
20384
+  (0.1ms) SAVEPOINT active_record_1
20385
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20386
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20387
+  (0.1ms) SAVEPOINT active_record_1
20388
+ 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
20389
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20390
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20391
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20392
+ 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
20393
+ 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
20394
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 20
20395
+  (0.1ms) SAVEPOINT active_record_1
20396
+ 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
20397
+ 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
20398
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 11 LIMIT 1
20399
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '20-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', '93893ede-b119-433f-bce5-ae356f38199a', 20)
20400
+ 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
20401
+ 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
20402
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 20
20403
+ 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
20404
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20405
+  (0.1ms) SAVEPOINT active_record_1
20406
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14', `post_name` = 'test' WHERE `wp_posts`.`ID` = 21
20407
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 20
20408
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20409
+ 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
20410
+  (0.4ms) ROLLBACK
20411
+  (0.1ms) BEGIN
20412
+  (0.1ms) COMMIT
20413
+  (0.1ms) BEGIN
20414
+  (0.1ms) SAVEPOINT active_record_1
20415
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20416
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20417
+  (0.1ms) SAVEPOINT active_record_1
20418
+ 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
20419
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20420
+ SQL (0.3ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 12, '2016-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20421
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20422
+  (0.1ms) SAVEPOINT active_record_1
20423
+ SQL (0.3ms) UPDATE `wp_posts` SET `post_date` = '2009-01-01 00:00:00', `post_modified` = '2010-01-01 00:00:00', `post_modified_gmt` = '2010-01-01 00:00:00' WHERE `wp_posts`.`ID` = 22
20424
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20425
+ 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
20426
+ 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
20427
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 22
20428
+  (0.1ms) SAVEPOINT active_record_1
20429
+ 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
20430
+ Wordpress::User Load (0.5ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 12 LIMIT 1
20431
+ SQL (0.6ms) 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, '2009-01-01 00:00:00', '2016-07-17 22:43:14', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '22-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', '40170f42-07ab-4715-9271-d21fc3f163a2', 22)
20432
+ 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` = 22
20433
+ 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
20434
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 22
20435
+ 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
20436
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20437
+ 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
20438
+  (0.4ms) ROLLBACK
20439
+  (0.1ms) BEGIN
20440
+  (0.1ms) COMMIT
20441
+  (0.1ms) BEGIN
20442
+  (0.1ms) SAVEPOINT active_record_1
20443
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20444
+  (0.2ms) RELEASE SAVEPOINT active_record_1
20445
+  (0.1ms) SAVEPOINT active_record_1
20446
+ 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
20447
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20448
+ 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', '\'', 13, '2016-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20449
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20450
+  (0.1ms) SAVEPOINT active_record_1
20451
+ 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
20452
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20453
+ 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
20454
+ 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
20455
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 24
20456
+  (0.1ms) SAVEPOINT active_record_1
20457
+ 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
20458
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 13 LIMIT 1
20459
+ 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-07-17 22:43:14', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '24-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', '5fb2fda6-23dc-442d-b48d-687cc1b7960c', 24)
20460
+ 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
20461
+ 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
20462
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 24
20463
+ 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
20464
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20465
+  (0.4ms) ROLLBACK
20466
+  (0.1ms) BEGIN
20467
+  (0.1ms) COMMIT
20468
+  (0.1ms) BEGIN
20469
+  (0.1ms) SAVEPOINT active_record_1
20470
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:43:14', 'ACTIVATIONKEY', 'DISPLAY NAME')
20471
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20472
+  (0.1ms) SAVEPOINT active_record_1
20473
+ 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
20474
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20475
+ 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-07-17 22:43:14', '2016-07-17 22:43:14', 'test', '2016-07-17 22:43:14', '2016-07-17 22:43:14')
20476
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20477
+  (0.1ms) SAVEPOINT active_record_1
20478
+ 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
20479
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20480
+ 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
20481
+ 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
20482
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26
20483
+  (0.1ms) SAVEPOINT active_record_1
20484
+ 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
20485
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 14 LIMIT 1
20486
+ 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', 14, '2009-01-01 00:00:00', '2016-07-17 22:43:14', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '26-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:43:14', '2016-07-17 22:43:14', '', '0e326a14-da56-43d5-8c7a-890bc1c4d5e2', 26)
20487
+ 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
20488
+ 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
20489
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:43:14', `post_modified_gmt` = '2016-07-17 22:43:14' WHERE `wp_posts`.`ID` = 26
20490
+ 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
20491
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20492
+ 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
20493
+  (0.4ms) ROLLBACK
20494
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
20495
+  (50.4ms) DROP DATABASE IF EXISTS `wp_test`
20496
+  (4.9ms) CREATE DATABASE `wp_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
20497
+  (29.1ms) 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
20498
+  (12.0ms) CREATE INDEX `comment_id` USING btree ON `wp_commentmeta` (`comment_id`)
20499
+  (9.6ms) CREATE INDEX `meta_key` USING btree ON `wp_commentmeta` (`meta_key`) 
20500
+  (10.9ms) 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
20501
+  (12.0ms) CREATE INDEX `comment_approved_date_gmt` USING btree ON `wp_comments` (`comment_approved`, `comment_date_gmt`) 
20502
+  (10.9ms) CREATE INDEX `comment_author_email` USING btree ON `wp_comments` (`comment_author_email`(10))
20503
+  (10.7ms) CREATE INDEX `comment_date_gmt` USING btree ON `wp_comments` (`comment_date_gmt`) 
20504
+  (11.2ms) CREATE INDEX `comment_parent` USING btree ON `wp_comments` (`comment_parent`)
20505
+  (12.0ms) CREATE INDEX `comment_post_ID` USING btree ON `wp_comments` (`comment_post_ID`) 
20506
+  (12.6ms) 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
20507
+  (11.6ms) CREATE INDEX `link_visible` USING btree ON `wp_links` (`link_visible`) 
20508
+  (10.9ms) 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
20509
+  (10.8ms) CREATE UNIQUE INDEX `option_name` USING btree ON `wp_options` (`option_name`) 
20510
+  (10.7ms) 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
20511
+  (12.1ms) CREATE INDEX `meta_key` USING btree ON `wp_postmeta` (`meta_key`) 
20512
+  (12.4ms) CREATE INDEX `post_id` USING btree ON `wp_postmeta` (`post_id`)
20513
+  (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
20514
+  (11.1ms) CREATE INDEX `post_author` USING btree ON `wp_posts` (`post_author`)
20515
+  (11.0ms) CREATE INDEX `post_name` USING btree ON `wp_posts` (`post_name`) 
20516
+  (10.6ms) CREATE INDEX `post_parent` USING btree ON `wp_posts` (`post_parent`)
20517
+  (11.1ms) CREATE INDEX `type_status_date` USING btree ON `wp_posts` (`post_type`, `post_status`, `post_date`, `ID`) 
20518
+  (10.9ms) 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
20519
+  (11.4ms) CREATE INDEX `term_taxonomy_id` USING btree ON `wp_term_relationships` (`term_taxonomy_id`) 
20520
+  (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
20521
+  (12.1ms) CREATE INDEX `taxonomy` USING btree ON `wp_term_taxonomy` (`taxonomy`) 
20522
+  (11.6ms) CREATE UNIQUE INDEX `term_id_taxonomy` USING btree ON `wp_term_taxonomy` (`term_id`, `taxonomy`)
20523
+  (11.3ms) 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
20524
+  (12.1ms) CREATE INDEX `name` USING btree ON `wp_terms` (`name`)
20525
+  (12.2ms) CREATE UNIQUE INDEX `slug` USING btree ON `wp_terms` (`slug`) 
20526
+  (12.3ms) CREATE TABLE `wp_usermeta` (`umeta_id` int(11) auto_increment PRIMARY KEY, `user_id` bigint DEFAULT 0 NOT NULL, `meta_key` varchar(255), `meta_value` longtext) ENGINE=InnoDB
20527
+  (11.0ms) CREATE INDEX `meta_key` USING btree ON `wp_usermeta` (`meta_key`) 
20528
+  (10.8ms) CREATE INDEX `user_id` USING btree ON `wp_usermeta` (`user_id`)
20529
+  (10.1ms) 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
20530
+  (11.0ms) CREATE INDEX `user_login_key` USING btree ON `wp_users` (`user_login`)
20531
+  (11.9ms) CREATE INDEX `user_nicename` USING btree ON `wp_users` (`user_nicename`) 
20532
+  (12.0ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
20533
+  (14.0ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
20534
+  (0.2ms) SELECT version FROM `schema_migrations`
20535
+  (4.3ms) INSERT INTO `schema_migrations` (version) VALUES ('0')
20536
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
20537
+  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
20538
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
20539
+  (1752.0ms) SELECT * FROM information_schema.tables
20540
+  (1.1ms) SELECT table_name FROM information_schema.tables WHERE table_schema = 'wp_test' AND table_rows > 0
20541
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 1
20542
+  (0.1ms) BEGIN
20543
+  (0.0ms) COMMIT
20544
+  (0.0ms) BEGIN
20545
+  (0.1ms) SAVEPOINT active_record_1
20546
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:21', 'ACTIVATIONKEY', 'DISPLAY NAME')
20547
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20548
+  (0.1ms) SAVEPOINT active_record_1
20549
+ 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
20550
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20551
+ 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-07-17 22:44:21', '2016-07-17 22:44:21', 'test', '2016-07-17 22:44:21', '2016-07-17 22:44:21')
20552
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20553
+  (0.1ms) SAVEPOINT active_record_1
20554
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
20555
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
20556
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20557
+  (0.1ms) SAVEPOINT active_record_1
20558
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 1)
20559
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20560
+  (0.1ms) SAVEPOINT active_record_1
20561
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (1, 1)
20562
+ SQL (0.3ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 1
20563
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20564
+  (0.1ms) SAVEPOINT active_record_1
20565
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
20566
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
20567
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20568
+  (0.1ms) SAVEPOINT active_record_1
20569
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 2)
20570
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20571
+  (0.1ms) SAVEPOINT active_record_1
20572
+ SQL (16.6ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (1, 2)
20573
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 2
20574
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20575
+ 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
20576
+ 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` = 1
20577
+  (11.2ms) ROLLBACK
20578
+  (0.2ms) BEGIN
20579
+  (0.1ms) COMMIT
20580
+  (0.1ms) BEGIN
20581
+  (0.1ms) SAVEPOINT active_record_1
20582
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20583
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20584
+  (0.1ms) SAVEPOINT active_record_1
20585
+ Wordpress::Post Load (4.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 0 LIMIT 1
20586
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20587
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20588
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20589
+  (0.1ms) SAVEPOINT active_record_1
20590
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
20591
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
20592
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20593
+  (0.1ms) SAVEPOINT active_record_1
20594
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 3)
20595
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20596
+  (0.1ms) SAVEPOINT active_record_1
20597
+ SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (2, 3)
20598
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 3
20599
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20600
+  (0.1ms) SAVEPOINT active_record_1
20601
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
20602
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
20603
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20604
+  (0.1ms) SAVEPOINT active_record_1
20605
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 4)
20606
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20607
+  (0.1ms) SAVEPOINT active_record_1
20608
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (2, 4)
20609
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 4
20610
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20611
+ 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` = 2 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
20612
+ 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` = 2
20613
+  (0.1ms) SAVEPOINT active_record_1
20614
+ Wordpress::Relationship Load (0.1ms) 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)
20615
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 3 LIMIT 1
20616
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 3
20617
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 4 LIMIT 1
20618
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 4
20619
+ SQL (0.1ms) DELETE FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 2 AND `wp_term_relationships`.`term_taxonomy_id` IN (3, 4)
20620
+ 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` = 2
20621
+ SQL (0.2ms) DELETE FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 2
20622
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20623
+ 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` = 3 LIMIT 1
20624
+ 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` = 4 LIMIT 1
20625
+  (0.5ms) ROLLBACK
20626
+  (0.1ms) BEGIN
20627
+  (0.1ms) COMMIT
20628
+  (0.1ms) BEGIN
20629
+  (0.1ms) SAVEPOINT active_record_1
20630
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20631
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20632
+  (0.1ms) SAVEPOINT active_record_1
20633
+ 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
20634
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20635
+ SQL (0.1ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 3, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20636
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20637
+  (0.1ms) SAVEPOINT active_record_1
20638
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
20639
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
20640
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20641
+  (0.1ms) SAVEPOINT active_record_1
20642
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 5)
20643
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20644
+  (0.1ms) SAVEPOINT active_record_1
20645
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (3, 5)
20646
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 5
20647
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20648
+  (0.1ms) SAVEPOINT active_record_1
20649
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
20650
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
20651
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20652
+  (0.1ms) SAVEPOINT active_record_1
20653
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 6)
20654
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20655
+  (0.1ms) SAVEPOINT active_record_1
20656
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (3, 6)
20657
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 6
20658
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20659
+  (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
20660
+  (0.4ms) ROLLBACK
20661
+  (0.1ms) BEGIN
20662
+  (0.1ms) COMMIT
20663
+  (0.1ms) BEGIN
20664
+  (0.1ms) SAVEPOINT active_record_1
20665
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20666
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20667
+  (0.1ms) SAVEPOINT active_record_1
20668
+ 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
20669
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20670
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20671
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20672
+  (0.1ms) SAVEPOINT active_record_1
20673
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
20674
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
20675
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20676
+  (0.1ms) SAVEPOINT active_record_1
20677
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 7)
20678
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20679
+  (0.1ms) SAVEPOINT active_record_1
20680
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (4, 7)
20681
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 7
20682
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20683
+  (0.1ms) SAVEPOINT active_record_1
20684
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
20685
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
20686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20687
+  (0.1ms) SAVEPOINT active_record_1
20688
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 8)
20689
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20690
+  (0.1ms) SAVEPOINT active_record_1
20691
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (4, 8)
20692
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 8
20693
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20694
+ 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` = 4 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
20695
+ 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
20696
+  (0.1ms) SAVEPOINT active_record_1
20697
+ Wordpress::Relationship Load (0.2ms) SELECT `wp_term_relationships`.* FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 4 AND `wp_term_relationships`.`term_taxonomy_id` IN (7, 8)
20698
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 7 LIMIT 1
20699
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 7
20700
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 8 LIMIT 1
20701
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 8
20702
+ SQL (0.1ms) DELETE FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 4 AND `wp_term_relationships`.`term_taxonomy_id` IN (7, 8)
20703
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20704
+ 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` = 7 LIMIT 1
20705
+ 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` = 8 LIMIT 1
20706
+  (0.5ms) ROLLBACK
20707
+  (0.1ms) BEGIN
20708
+  (0.1ms) COMMIT
20709
+  (0.1ms) BEGIN
20710
+  (0.1ms) SAVEPOINT active_record_1
20711
+ SQL (0.2ms) INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES ('Hello', 'World', 'no')
20712
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20713
+  (0.4ms) ROLLBACK
20714
+  (0.1ms) BEGIN
20715
+  (0.1ms) COMMIT
20716
+  (0.1ms) BEGIN
20717
+  (0.1ms) SAVEPOINT active_record_1
20718
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20719
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20720
+  (0.1ms) SAVEPOINT active_record_1
20721
+ 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
20722
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20723
+ 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', '\'', 5, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20724
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20725
+ 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
20726
+ 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
20727
+ Wordpress::Revision Load (0.3ms) 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
20728
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 5
20729
+  (6.0ms) ROLLBACK
20730
+  (0.1ms) BEGIN
20731
+  (0.1ms) COMMIT
20732
+  (0.1ms) BEGIN
20733
+  (0.1ms) SAVEPOINT active_record_1
20734
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20735
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20736
+  (0.1ms) SAVEPOINT active_record_1
20737
+ 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
20738
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20739
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20740
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20741
+ 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
20742
+ 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
20743
+ 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
20744
+  (0.3ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 6
20745
+  (0.1ms) SAVEPOINT active_record_1
20746
+ Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 6 LIMIT 1
20747
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 6 LIMIT 1
20748
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '6-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', '117a7257-7bfb-44ff-9735-272afd597046', 6)
20749
+ 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` = 6
20750
+ 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` = 6
20751
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 6
20752
+ 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
20753
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20754
+ Wordpress::Revision Load (0.4ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 6
20755
+  (0.4ms) ROLLBACK
20756
+  (0.1ms) BEGIN
20757
+  (0.1ms) COMMIT
20758
+  (0.1ms) BEGIN
20759
+  (0.1ms) SAVEPOINT active_record_1
20760
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20761
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20762
+  (0.1ms) SAVEPOINT active_record_1
20763
+ 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
20764
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20765
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20766
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20767
+ 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
20768
+ 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
20769
+ 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
20770
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 8
20771
+  (0.1ms) SAVEPOINT active_record_1
20772
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 8 LIMIT 1
20773
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 7 LIMIT 1
20774
+ 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', 7, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '8-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', '9e4ce646-de30-4587-987c-78406778e27a', 8)
20775
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 8
20776
+ 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` = 8
20777
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 8
20778
+ 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
20779
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20780
+  (0.3ms) ROLLBACK
20781
+  (0.1ms) BEGIN
20782
+  (0.1ms) COMMIT
20783
+  (0.1ms) BEGIN
20784
+  (0.1ms) SAVEPOINT active_record_1
20785
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20786
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20787
+  (0.1ms) SAVEPOINT active_record_1
20788
+ 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
20789
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20790
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20791
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20792
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20793
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20794
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
20795
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 10
20796
+  (5.8ms) ROLLBACK
20797
+  (0.1ms) BEGIN
20798
+  (0.1ms) COMMIT
20799
+  (0.1ms) BEGIN
20800
+  (0.1ms) SAVEPOINT active_record_1
20801
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20803
+  (0.1ms) SAVEPOINT active_record_1
20804
+ 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
20805
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20806
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20808
+ 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
20809
+ 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
20810
+ 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
20811
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 11
20812
+  (0.1ms) SAVEPOINT active_record_1
20813
+ 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
20814
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 9 LIMIT 1
20815
+ SQL (0.3ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 9, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '11-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', '0f7ac60e-4bf3-4f1a-a509-2ef934efb24e', 11)
20816
+ 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
20817
+ 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
20818
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 11
20819
+ 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
20820
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20821
+ 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
20822
+  (0.4ms) ROLLBACK
20823
+  (0.1ms) BEGIN
20824
+  (0.1ms) COMMIT
20825
+  (0.1ms) BEGIN
20826
+  (0.1ms) SAVEPOINT active_record_1
20827
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20828
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20829
+  (0.1ms) SAVEPOINT active_record_1
20830
+ 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
20831
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20832
+ 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', '\'', 10, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20833
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20834
+ 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
20835
+ 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
20836
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 13
20837
+  (0.1ms) SAVEPOINT active_record_1
20838
+ Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 13 LIMIT 1
20839
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 10 LIMIT 1
20840
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '13-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', 'fd12121f-e55c-4188-8c06-04615ff9864d', 13)
20841
+ 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
20842
+ 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
20843
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 13
20844
+ 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
20845
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20846
+ 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
20847
+  (0.5ms) ROLLBACK
20848
+  (0.1ms) BEGIN
20849
+  (0.1ms) COMMIT
20850
+  (0.1ms) BEGIN
20851
+  (0.1ms) SAVEPOINT active_record_1
20852
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20853
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20854
+  (0.1ms) SAVEPOINT active_record_1
20855
+ 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
20856
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20857
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20858
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20859
+ Wordpress::Revision Load (0.3ms) 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
20860
+ Wordpress::Revision Load (0.3ms) 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
20861
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 15
20862
+  (0.4ms) ROLLBACK
20863
+  (0.1ms) BEGIN
20864
+  (0.1ms) COMMIT
20865
+  (0.1ms) BEGIN
20866
+  (0.1ms) SAVEPOINT active_record_1
20867
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20868
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20869
+  (0.1ms) SAVEPOINT active_record_1
20870
+ 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
20871
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20872
+ 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', '\'', 12, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20873
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20874
+  (0.1ms) SAVEPOINT active_record_1
20875
+ 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` = 16
20876
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20877
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 16 LIMIT 1
20878
+ 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
20879
+ 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
20880
+ 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
20881
+ 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
20882
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 16
20883
+  (0.1ms) SAVEPOINT active_record_1
20884
+ 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
20885
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 12 LIMIT 1
20886
+ 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, '2009-01-01 00:00:00', '2016-07-17 22:44:22', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '16-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', '70aeeebd-b76f-4dd5-ab39-0777315f5108', 16)
20887
+ 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
20888
+ 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
20889
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 16
20890
+ 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
20891
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20892
+ 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
20893
+  (0.4ms) ROLLBACK
20894
+  (0.1ms) BEGIN
20895
+  (0.1ms) COMMIT
20896
+  (0.1ms) BEGIN
20897
+  (0.1ms) SAVEPOINT active_record_1
20898
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20899
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20900
+  (0.1ms) SAVEPOINT active_record_1
20901
+ 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
20902
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20903
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20904
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20905
+  (0.1ms) SAVEPOINT active_record_1
20906
+ 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
20907
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20908
+ 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
20909
+ 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
20910
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 18
20911
+  (0.1ms) SAVEPOINT active_record_1
20912
+ 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
20913
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 13 LIMIT 1
20914
+ 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-07-17 22:44:22', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '18-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', '5ec8dec1-2a95-48bc-8d3c-7abd6df07abd', 18)
20915
+ 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
20916
+ 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
20917
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 18
20918
+ 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
20919
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20920
+ 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
20921
+  (0.5ms) ROLLBACK
20922
+  (0.1ms) BEGIN
20923
+  (0.1ms) COMMIT
20924
+  (0.1ms) BEGIN
20925
+  (0.1ms) SAVEPOINT active_record_1
20926
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20927
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20928
+  (0.1ms) SAVEPOINT active_record_1
20929
+ 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
20930
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20931
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20932
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20933
+  (0.1ms) SAVEPOINT active_record_1
20934
+ 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
20935
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20936
+ 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
20937
+ 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
20938
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 20
20939
+  (0.1ms) SAVEPOINT active_record_1
20940
+ 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
20941
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 14 LIMIT 1
20942
+ 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', 14, '2009-01-01 00:00:00', '2016-07-17 22:44:22', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '20-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', 'ee629baa-1fe4-4885-9d9d-252eff3dd439', 20)
20943
+ 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
20944
+ 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
20945
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 20
20946
+ 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
20947
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20948
+  (0.4ms) ROLLBACK
20949
+  (0.1ms) BEGIN
20950
+  (0.0ms) COMMIT
20951
+  (0.0ms) BEGIN
20952
+  (0.1ms) SAVEPOINT active_record_1
20953
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20954
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20955
+  (0.1ms) SAVEPOINT active_record_1
20956
+ 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
20957
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20958
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20959
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20960
+ 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
20961
+ 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
20962
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 22
20963
+  (0.1ms) SAVEPOINT active_record_1
20964
+ 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
20965
+ 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
20966
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 15 LIMIT 1
20967
+ 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, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '22-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', '92217808-b443-49f3-8a90-cf204fef2782', 22)
20968
+ 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
20969
+ 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
20970
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 22
20971
+ 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
20972
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20973
+  (0.1ms) SAVEPOINT active_record_1
20974
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22', `post_name` = 'test' WHERE `wp_posts`.`ID` = 23
20975
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 22
20976
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20977
+ 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
20978
+  (0.5ms) ROLLBACK
20979
+  (0.1ms) BEGIN
20980
+  (0.1ms) COMMIT
20981
+  (0.1ms) BEGIN
20982
+  (0.1ms) SAVEPOINT active_record_1
20983
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
20984
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20985
+  (0.1ms) SAVEPOINT active_record_1
20986
+ 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
20987
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
20988
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 16, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
20989
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20990
+  (0.1ms) SAVEPOINT active_record_1
20991
+ 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
20992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20993
+ 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
20994
+ 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
20995
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 24
20996
+  (0.1ms) SAVEPOINT active_record_1
20997
+ 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
20998
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 16 LIMIT 1
20999
+ 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, '2009-01-01 00:00:00', '2016-07-17 22:44:22', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '24-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', 'a4659c9e-4b7a-4d37-b5fb-e02eead06b1f', 24)
21000
+ 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
21001
+ 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
21002
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 24
21003
+ 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
21004
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21005
+ 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
21006
+  (0.4ms) ROLLBACK
21007
+  (0.1ms) BEGIN
21008
+  (0.1ms) COMMIT
21009
+  (0.1ms) BEGIN
21010
+  (0.1ms) SAVEPOINT active_record_1
21011
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21012
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21013
+  (0.1ms) SAVEPOINT active_record_1
21014
+ 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
21015
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21016
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21017
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21018
+  (0.1ms) SAVEPOINT active_record_1
21019
+ 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
21020
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21021
+ 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
21022
+ 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
21023
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26
21024
+  (0.1ms) SAVEPOINT active_record_1
21025
+ 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
21026
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 17 LIMIT 1
21027
+ 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-07-17 22:44:22', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '26-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', 'a2a1690a-a51d-45fd-8ad8-8011ae61e41c', 26)
21028
+ 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
21029
+ 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
21030
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 26
21031
+ 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
21032
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21033
+ 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
21034
+ 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
21035
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26
21036
+  (0.1ms) SAVEPOINT active_record_1
21037
+ 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
21038
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 17 LIMIT 1
21039
+ 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-07-17 22:44:22', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '26-revision-v2', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', '3e093bc7-f2a5-40b1-93b2-1d2fd3bc7958', 26)
21040
+ 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
21041
+ 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
21042
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 26
21043
+ 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
21044
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21045
+ 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
21046
+ 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
21047
+  (0.5ms) ROLLBACK
21048
+  (0.1ms) BEGIN
21049
+  (0.1ms) COMMIT
21050
+  (0.1ms) BEGIN
21051
+  (0.1ms) SAVEPOINT active_record_1
21052
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21053
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21054
+  (0.1ms) SAVEPOINT active_record_1
21055
+ 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
21056
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21057
+ 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', '\'', 18, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21058
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21059
+  (0.1ms) SAVEPOINT active_record_1
21060
+ 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
21061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21062
+ 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
21063
+ 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
21064
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29
21065
+  (0.2ms) SAVEPOINT active_record_1
21066
+ 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
21067
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 18 LIMIT 1
21068
+ 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-07-17 22:44:22', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '29-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', '18714d3d-9efd-4b5d-8726-f92cc7e8c51d', 29)
21069
+ 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
21070
+ 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
21071
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 29
21072
+ 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
21073
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21074
+ 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
21075
+ 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
21076
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29
21077
+  (0.1ms) SAVEPOINT active_record_1
21078
+ 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
21079
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 18 LIMIT 1
21080
+ 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-07-17 22:44:22', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '29-revision-v2', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', 'efe714e0-d0e5-4b9a-8f60-7b4b31c0f4d0', 29)
21081
+ 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
21082
+ 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
21083
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 29
21084
+ 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
21085
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21086
+ 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
21087
+ 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
21088
+  (0.5ms) ROLLBACK
21089
+  (0.1ms) BEGIN
21090
+  (0.1ms) COMMIT
21091
+  (0.1ms) BEGIN
21092
+  (0.1ms) ROLLBACK
21093
+  (0.1ms) BEGIN
21094
+  (0.1ms) COMMIT
21095
+  (0.1ms) BEGIN
21096
+  (0.1ms) ROLLBACK
21097
+  (0.1ms) BEGIN
21098
+  (0.1ms) COMMIT
21099
+  (0.1ms) BEGIN
21100
+  (0.1ms) SAVEPOINT active_record_1
21101
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21102
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21103
+  (0.1ms) SAVEPOINT active_record_1
21104
+ 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
21105
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21106
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21107
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21108
+  (0.3ms) ROLLBACK
21109
+  (0.1ms) BEGIN
21110
+  (0.1ms) COMMIT
21111
+  (0.1ms) BEGIN
21112
+  (0.1ms) SAVEPOINT active_record_1
21113
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21114
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21115
+  (0.1ms) SAVEPOINT active_record_1
21116
+ 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
21117
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21118
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21119
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21120
+  (0.1ms) SAVEPOINT active_record_1
21121
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21122
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
21123
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21124
+  (0.1ms) SAVEPOINT active_record_1
21125
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 9)
21126
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21127
+ 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` = 9 LIMIT 1
21128
+ 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` = 33 AND `wp_term_taxonomy`.`term_taxonomy_id` = 9 LIMIT 1
21129
+ 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` = 33
21130
+  (0.1ms) SAVEPOINT active_record_1
21131
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 33
21132
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (9, 33)
21133
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 9
21134
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21135
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 33 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
21136
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 33 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
21137
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 33 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
21138
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 33
21139
+ 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
21140
+  (0.1ms) SAVEPOINT active_record_1
21141
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21142
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
21143
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21144
+  (0.1ms) SAVEPOINT active_record_1
21145
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Foo', 10)
21146
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21147
+ 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
21148
+  (0.1ms) SAVEPOINT active_record_1
21149
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21150
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
21151
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21152
+  (0.1ms) SAVEPOINT active_record_1
21153
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Bar', 11)
21154
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21155
+ 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` = 10 LIMIT 1
21156
+ 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` = 11 LIMIT 1
21157
+ Wordpress::Post Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 33 LIMIT 1
21158
+ 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` = 33 AND `wp_term_taxonomy`.`term_taxonomy_id` = 10 LIMIT 1
21159
+ 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` = 33 AND `wp_term_taxonomy`.`term_taxonomy_id` = 11 LIMIT 1
21160
+ 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` = 33
21161
+  (0.1ms) SAVEPOINT active_record_1
21162
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 20 LIMIT 1
21163
+ 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, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '33-revision-v1', '127.0.0.1', '127.0.0.1', '2016-07-17 22:44:22', '2016-07-17 22:44:22', '', 'df66def9-c08a-4556-870a-4a2a2277d9cb', 33)
21164
+ 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` = 33
21165
+ SQL (0.2ms) DELETE FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 9
21166
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 33
21167
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (10, 33)
21168
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 10
21169
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (11, 33)
21170
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 11
21171
+ 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
21172
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21173
+ Wordpress::Post Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 33 LIMIT 1
21174
+ 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
21175
+ 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` = 33
21176
+ Wordpress::Term Load (0.4ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 10 LIMIT 1
21177
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 11 LIMIT 1
21178
+  (6.2ms) ROLLBACK
21179
+  (0.1ms) BEGIN
21180
+  (0.1ms) COMMIT
21181
+  (0.1ms) BEGIN
21182
+  (0.1ms) SAVEPOINT active_record_1
21183
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21184
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21185
+  (0.1ms) SAVEPOINT active_record_1
21186
+ 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
21187
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21188
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21189
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21190
+  (0.1ms) SAVEPOINT active_record_1
21191
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21192
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
21193
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21194
+  (0.1ms) SAVEPOINT active_record_1
21195
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 12)
21196
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21197
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 12 LIMIT 1
21198
+ 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
21199
+ 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` = 12 LIMIT 1
21200
+ 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` = 35 AND `wp_term_taxonomy`.`term_taxonomy_id` = 12 LIMIT 1
21201
+ 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` = 35
21202
+  (0.1ms) SAVEPOINT active_record_1
21203
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 35
21204
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (12, 35)
21205
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 12
21206
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21207
+ 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` = 35
21208
+  (0.5ms) ROLLBACK
21209
+  (0.1ms) BEGIN
21210
+  (0.1ms) COMMIT
21211
+  (0.0ms) BEGIN
21212
+  (0.1ms) SAVEPOINT active_record_1
21213
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21215
+  (0.1ms) SAVEPOINT active_record_1
21216
+ 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
21217
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21218
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21219
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21220
+  (0.1ms) SAVEPOINT active_record_1
21221
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21222
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
21223
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21224
+  (0.1ms) SAVEPOINT active_record_1
21225
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 13)
21226
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21227
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 13 LIMIT 1
21228
+ 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
21229
+ 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` = 13 LIMIT 1
21230
+ 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` = 36 AND `wp_term_taxonomy`.`term_taxonomy_id` = 13 LIMIT 1
21231
+ 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
21232
+  (0.1ms) SAVEPOINT active_record_1
21233
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 36
21234
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (13, 36)
21235
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 13
21236
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21237
+ 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
21238
+  (0.5ms) ROLLBACK
21239
+  (0.1ms) BEGIN
21240
+  (0.1ms) COMMIT
21241
+  (0.1ms) BEGIN
21242
+  (0.1ms) SAVEPOINT active_record_1
21243
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21244
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21245
+  (0.1ms) SAVEPOINT active_record_1
21246
+ 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
21247
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21248
+ 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', '\'', 23, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21249
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21250
+  (0.1ms) SAVEPOINT active_record_1
21251
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21252
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
21253
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21254
+  (0.1ms) SAVEPOINT active_record_1
21255
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 14)
21256
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21257
+  (0.1ms) SAVEPOINT active_record_1
21258
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (37, 14)
21259
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 14
21260
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21261
+  (0.1ms) SAVEPOINT active_record_1
21262
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 37
21263
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21264
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 14 LIMIT 1
21265
+ 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` = 37
21266
+  (0.4ms) ROLLBACK
21267
+  (0.1ms) BEGIN
21268
+  (0.1ms) COMMIT
21269
+  (0.1ms) BEGIN
21270
+  (0.1ms) SAVEPOINT active_record_1
21271
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21272
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21273
+  (0.1ms) SAVEPOINT active_record_1
21274
+ 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
21275
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21276
+ 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', '\'', 24, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21277
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21278
+  (0.1ms) SAVEPOINT active_record_1
21279
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21280
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
21281
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21282
+  (0.1ms) SAVEPOINT active_record_1
21283
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 15)
21284
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21285
+  (0.1ms) SAVEPOINT active_record_1
21286
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (38, 15)
21287
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 15
21288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21289
+  (0.1ms) SAVEPOINT active_record_1
21290
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 38
21291
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21292
+ 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` = 38 AND `wp_term_taxonomy`.`term_taxonomy_id` = 15 LIMIT 1
21293
+  (0.4ms) ROLLBACK
21294
+  (0.1ms) BEGIN
21295
+  (0.1ms) COMMIT
21296
+  (0.1ms) BEGIN
21297
+  (0.1ms) SAVEPOINT active_record_1
21298
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21299
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21300
+  (0.1ms) SAVEPOINT active_record_1
21301
+ 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
21302
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21303
+ 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', '\'', 25, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21305
+  (0.1ms) SAVEPOINT active_record_1
21306
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21307
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
21308
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21309
+  (0.1ms) SAVEPOINT active_record_1
21310
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 16)
21311
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21312
+ Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 16 LIMIT 1
21313
+ 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` = 39 AND `wp_term_taxonomy`.`term_taxonomy_id` = 16 LIMIT 1
21314
+ Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 39
21315
+  (0.1ms) SAVEPOINT active_record_1
21316
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 39
21317
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (16, 39)
21318
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 16
21319
+  (0.2ms) RELEASE SAVEPOINT active_record_1
21320
+ 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` = 39
21321
+  (0.4ms) ROLLBACK
21322
+  (0.1ms) BEGIN
21323
+  (0.1ms) COMMIT
21324
+  (0.1ms) BEGIN
21325
+  (0.1ms) SAVEPOINT active_record_1
21326
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21327
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21328
+  (0.1ms) SAVEPOINT active_record_1
21329
+ 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
21330
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21331
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 26, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21332
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21333
+  (0.1ms) SAVEPOINT active_record_1
21334
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21335
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
21336
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21337
+  (0.1ms) SAVEPOINT active_record_1
21338
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 17)
21339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21340
+  (0.1ms) SAVEPOINT active_record_1
21341
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (40, 17)
21342
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 17
21343
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21344
+ 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
21345
+  (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` = 40
21346
+ 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 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
21347
+ 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` = 40 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
21348
+  (0.5ms) ROLLBACK
21349
+  (0.1ms) BEGIN
21350
+  (0.1ms) COMMIT
21351
+  (0.1ms) BEGIN
21352
+  (0.1ms) SAVEPOINT active_record_1
21353
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21354
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21355
+  (0.1ms) SAVEPOINT active_record_1
21356
+ 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
21357
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21358
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21359
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21360
+  (0.1ms) SAVEPOINT active_record_1
21361
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21362
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
21363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21364
+  (0.1ms) SAVEPOINT active_record_1
21365
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 18)
21366
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21367
+ 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` = 18 LIMIT 1
21368
+ 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` = 41 AND `wp_term_taxonomy`.`term_taxonomy_id` = 18 LIMIT 1
21369
+ 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
21370
+  (0.1ms) SAVEPOINT active_record_1
21371
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 41
21372
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (18, 41)
21373
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 18
21374
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21375
+ 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
21376
+  (0.4ms) ROLLBACK
21377
+  (0.1ms) BEGIN
21378
+  (0.1ms) COMMIT
21379
+  (0.1ms) BEGIN
21380
+  (0.1ms) SAVEPOINT active_record_1
21381
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21382
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21383
+  (0.1ms) SAVEPOINT active_record_1
21384
+ 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
21385
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21386
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21387
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21388
+ 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
21389
+  (0.1ms) SAVEPOINT active_record_1
21390
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21391
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
21392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21393
+  (0.1ms) SAVEPOINT active_record_1
21394
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 19, '')
21395
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21396
+ 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
21397
+  (0.1ms) SAVEPOINT active_record_1
21398
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21399
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
21400
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21401
+  (0.1ms) SAVEPOINT active_record_1
21402
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 20, '')
21403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21404
+ 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` = 42 AND `wp_term_taxonomy`.`term_taxonomy_id` = 19 LIMIT 1
21405
+ 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` = 42 AND `wp_term_taxonomy`.`term_taxonomy_id` = 20 LIMIT 1
21406
+ 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` = 42
21407
+  (0.1ms) SAVEPOINT active_record_1
21408
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 42
21409
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (19, 42)
21410
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 19
21411
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (20, 42)
21412
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 20
21413
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21414
+  (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` = 42
21415
+  (0.4ms) ROLLBACK
21416
+  (0.1ms) BEGIN
21417
+  (0.1ms) COMMIT
21418
+  (0.1ms) BEGIN
21419
+  (0.1ms) SAVEPOINT active_record_1
21420
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21421
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21422
+  (0.1ms) SAVEPOINT active_record_1
21423
+ 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
21424
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21425
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21426
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21427
+  (0.1ms) SAVEPOINT active_record_1
21428
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21429
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo61', 'foo61')
21430
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21431
+  (0.1ms) SAVEPOINT active_record_1
21432
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo61', 21)
21433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21434
+  (0.1ms) SAVEPOINT active_record_1
21435
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (43, 21)
21436
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 21
21437
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21438
+  (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` = 43
21439
+  (0.2ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 43
21440
+ 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` = 43 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
21441
+  (0.4ms) ROLLBACK
21442
+  (0.1ms) BEGIN
21443
+  (0.1ms) COMMIT
21444
+  (0.1ms) BEGIN
21445
+  (0.1ms) SAVEPOINT active_record_1
21446
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21447
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello Again', 'hello-again')
21448
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21449
+  (0.1ms) SAVEPOINT active_record_1
21450
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Hello Again', 22)
21451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21452
+ 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
21453
+  (0.4ms) ROLLBACK
21454
+  (0.1ms) BEGIN
21455
+  (0.1ms) COMMIT
21456
+  (0.1ms) BEGIN
21457
+  (0.1ms) SAVEPOINT active_record_1
21458
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21459
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello Again', 'hello-again')
21460
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21461
+  (0.1ms) SAVEPOINT active_record_1
21462
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Hello Again', 23)
21463
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21464
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 23 LIMIT 1
21465
+  (0.3ms) ROLLBACK
21466
+  (0.1ms) BEGIN
21467
+  (0.1ms) COMMIT
21468
+  (0.1ms) BEGIN
21469
+ 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
21470
+  (0.1ms) SAVEPOINT active_record_1
21471
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21472
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello, Hello!', 'hello-hello')
21473
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21474
+  (0.1ms) SAVEPOINT active_record_1
21475
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 24, '')
21476
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21477
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 24 LIMIT 1
21478
+  (0.4ms) ROLLBACK
21479
+  (0.1ms) BEGIN
21480
+  (0.1ms) COMMIT
21481
+  (0.1ms) BEGIN
21482
+  (0.1ms) SAVEPOINT active_record_1
21483
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21484
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21485
+  (0.1ms) SAVEPOINT active_record_1
21486
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21487
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21488
+  (0.1ms) SAVEPOINT active_record_1
21489
+ 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
21490
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21491
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21492
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21493
+  (0.4ms) ROLLBACK
21494
+  (0.1ms) BEGIN
21495
+  (0.1ms) COMMIT
21496
+  (0.1ms) BEGIN
21497
+  (0.1ms) SAVEPOINT active_record_1
21498
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21499
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21500
+  (0.3ms) ROLLBACK
21501
+  (0.1ms) BEGIN
21502
+  (0.1ms) COMMIT
21503
+  (0.1ms) BEGIN
21504
+  (0.1ms) SAVEPOINT active_record_1
21505
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21507
+  (0.1ms) SAVEPOINT active_record_1
21508
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21509
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21510
+  (0.1ms) SAVEPOINT active_record_1
21511
+ 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
21512
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21513
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21514
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21515
+  (0.1ms) SAVEPOINT active_record_1
21516
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21517
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21518
+  (0.1ms) SAVEPOINT active_record_1
21519
+ 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
21520
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21521
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21522
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21523
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`post_author` = 33
21524
+  (0.3ms) ROLLBACK
21525
+  (0.1ms) BEGIN
21526
+  (0.1ms) COMMIT
21527
+  (0.1ms) BEGIN
21528
+  (0.1ms) SAVEPOINT active_record_1
21529
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21530
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21531
+  (0.1ms) SAVEPOINT active_record_1
21532
+ 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
21533
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21534
+ 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-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21535
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21536
+  (0.4ms) ROLLBACK
21537
+  (0.1ms) BEGIN
21538
+  (0.1ms) COMMIT
21539
+  (0.1ms) BEGIN
21540
+  (0.1ms) SAVEPOINT active_record_1
21541
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21542
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('General', 'general')
21543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21544
+  (0.1ms) SAVEPOINT active_record_1
21545
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes General', 25)
21546
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21547
+ 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` = 'General' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
21548
+  (0.3ms) ROLLBACK
21549
+  (0.1ms) BEGIN
21550
+  (0.1ms) COMMIT
21551
+  (0.1ms) BEGIN
21552
+ 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
21553
+  (0.1ms) SAVEPOINT active_record_1
21554
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21555
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Parent', 'parent')
21556
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21557
+  (0.1ms) SAVEPOINT active_record_1
21558
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Parent', 26)
21559
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21560
+ 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` = 26 AND `wp_terms`.`name` = 'Child' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
21561
+  (0.1ms) SAVEPOINT active_record_1
21562
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21563
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Child', 'child')
21564
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21565
+  (0.1ms) SAVEPOINT active_record_1
21566
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`, `parent`) VALUES ('category', 'Child', 27, 26)
21567
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21568
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 26 LIMIT 1
21569
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 26 LIMIT 1
21570
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 0 LIMIT 1
21571
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 27 LIMIT 1
21572
+ Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 26
21573
+  (0.4ms) ROLLBACK
21574
+  (0.1ms) BEGIN
21575
+  (0.1ms) COMMIT
21576
+  (0.1ms) BEGIN
21577
+  (0.1ms) SAVEPOINT active_record_1
21578
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21579
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('General', 'general')
21580
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21581
+  (0.1ms) SAVEPOINT active_record_1
21582
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes General', 28)
21583
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21584
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 28 LIMIT 1
21585
+  (0.4ms) ROLLBACK
21586
+  (0.1ms) BEGIN
21587
+  (0.1ms) COMMIT
21588
+  (0.1ms) BEGIN
21589
+ 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
21590
+  (0.1ms) SAVEPOINT active_record_1
21591
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21592
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Big Bang', 'big-bang')
21593
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21594
+  (0.1ms) SAVEPOINT active_record_1
21595
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Big Bang', 29)
21596
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21597
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 29 LIMIT 1
21598
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 0 LIMIT 1
21599
+  (0.3ms) ROLLBACK
21600
+  (0.1ms) BEGIN
21601
+  (0.1ms) COMMIT
21602
+  (0.1ms) BEGIN
21603
+  (0.1ms) SAVEPOINT active_record_1
21604
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21605
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello', 'hello')
21606
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21607
+  (0.3ms) ROLLBACK
21608
+  (0.1ms) BEGIN
21609
+  (0.1ms) COMMIT
21610
+  (0.0ms) BEGIN
21611
+  (0.1ms) SAVEPOINT active_record_1
21612
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21613
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21614
+  (0.1ms) SAVEPOINT active_record_1
21615
+ 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
21616
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21617
+ 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!', '', '', '', '', 37, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'page', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21618
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21619
+  (0.1ms) SAVEPOINT active_record_1
21620
+ SQL (0.1ms) INSERT INTO `wp_postmeta` (`meta_key`, `meta_value`, `post_id`) VALUES ('foo', 'TEST', 48)
21621
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21622
+ Wordpress::Pagemeta Load (0.2ms) SELECT `wp_postmeta`.* FROM `wp_postmeta` WHERE `wp_postmeta`.`post_id` = 48
21623
+  (0.4ms) ROLLBACK
21624
+  (0.1ms) BEGIN
21625
+  (0.1ms) COMMIT
21626
+  (0.1ms) BEGIN
21627
+  (0.1ms) SAVEPOINT active_record_1
21628
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21630
+  (0.1ms) SAVEPOINT active_record_1
21631
+ 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
21632
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21633
+ 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 ('attachment', 'Attachment', '', '', '', '', '\'', 38, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'attachment', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21634
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21635
+  (0.4ms) ROLLBACK
21636
+  (0.1ms) BEGIN
21637
+  (0.1ms) COMMIT
21638
+  (0.1ms) BEGIN
21639
+  (0.1ms) SAVEPOINT active_record_1
21640
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21641
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21642
+  (0.1ms) SAVEPOINT active_record_1
21643
+ 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
21644
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21645
+ 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 ('attachment', 'Attachment', '', '', '', '', '\'', 39, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'attachment', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21646
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21647
+  (0.1ms) SAVEPOINT active_record_1
21648
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21649
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
21650
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21651
+  (0.1ms) SAVEPOINT active_record_1
21652
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 31)
21653
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21654
+  (0.1ms) SAVEPOINT active_record_1
21655
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (50, 30)
21656
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 30
21657
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21658
+ Wordpress::Attachment Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('attachment') AND `wp_posts`.`ID` = 50 LIMIT 1
21659
+  (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` = 50
21660
+ 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` = 50 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
21661
+ Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 50 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
21662
+  (0.4ms) ROLLBACK
21663
+  (0.1ms) BEGIN
21664
+  (0.0ms) COMMIT
21665
+  (0.0ms) BEGIN
21666
+  (0.1ms) SAVEPOINT active_record_1
21667
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21668
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21669
+  (0.1ms) SAVEPOINT active_record_1
21670
+ 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
21671
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21672
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('attachment', 'Attachment', '', '', '', '', '\'', 40, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'attachment', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21673
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21674
+ 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
21675
+  (0.1ms) SAVEPOINT active_record_1
21676
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21677
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
21678
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21679
+  (0.1ms) SAVEPOINT active_record_1
21680
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 32, '')
21681
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21682
+ 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` = 'bar' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
21683
+  (0.1ms) SAVEPOINT active_record_1
21684
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21685
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
21686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21687
+  (0.2ms) SAVEPOINT active_record_1
21688
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 33, '')
21689
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21690
+ 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` = 51 AND `wp_term_taxonomy`.`term_taxonomy_id` = 31 LIMIT 1
21691
+ 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` = 51 AND `wp_term_taxonomy`.`term_taxonomy_id` = 32 LIMIT 1
21692
+ 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` = 51
21693
+  (0.1ms) SAVEPOINT active_record_1
21694
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 51
21695
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (31, 51)
21696
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 31
21697
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (32, 51)
21698
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 32
21699
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21700
+  (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` = 51
21701
+  (0.4ms) ROLLBACK
21702
+  (0.1ms) BEGIN
21703
+  (0.1ms) COMMIT
21704
+  (0.1ms) BEGIN
21705
+  (0.1ms) SAVEPOINT active_record_1
21706
+ SQL (0.4ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21707
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21708
+  (0.1ms) SAVEPOINT active_record_1
21709
+ 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
21710
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21711
+ SQL (0.3ms) INSERT INTO `wp_posts` (`post_type`, `post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('attachment', 'Attachment', '', '', '', '', '\'', 41, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'attachment', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21712
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21713
+  (0.1ms) SAVEPOINT active_record_1
21714
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21715
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo32', 'foo32')
21716
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21717
+  (0.1ms) SAVEPOINT active_record_1
21718
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo32', 34)
21719
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21720
+  (0.1ms) SAVEPOINT active_record_1
21721
+ SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (52, 33)
21722
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 33
21723
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21724
+  (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` = 52
21725
+  (0.1ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 52
21726
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 52 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
21727
+  (0.4ms) ROLLBACK
21728
+  (0.1ms) BEGIN
21729
+  (0.1ms) COMMIT
21730
+  (0.1ms) BEGIN
21731
+  (0.1ms) SAVEPOINT active_record_1
21732
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21733
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21734
+  (0.1ms) SAVEPOINT active_record_1
21735
+ SQL (0.2ms) INSERT INTO `wp_usermeta` (`meta_key`, `meta_value`, `user_id`) VALUES ('foo', 'TEST', 42)
21736
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21737
+ Wordpress::Usermeta Load (0.3ms) SELECT `wp_usermeta`.* FROM `wp_usermeta` WHERE `wp_usermeta`.`user_id` = 42
21738
+  (0.4ms) ROLLBACK
21739
+  (0.1ms) BEGIN
21740
+  (0.1ms) COMMIT
21741
+  (0.1ms) BEGIN
21742
+  (0.1ms) SAVEPOINT active_record_1
21743
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21745
+  (0.1ms) SAVEPOINT active_record_1
21746
+ 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
21747
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21748
+ 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!', '', '', '', '', 43, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'page', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21749
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21750
+  (0.4ms) ROLLBACK
21751
+  (0.1ms) BEGIN
21752
+  (0.1ms) COMMIT
21753
+  (0.1ms) BEGIN
21754
+  (0.1ms) SAVEPOINT active_record_1
21755
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21756
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21757
+  (0.1ms) SAVEPOINT active_record_1
21758
+ 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
21759
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21760
+ 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!', '', '', '', '', 44, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'page', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21761
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21762
+ 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
21763
+  (0.1ms) SAVEPOINT active_record_1
21764
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21765
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
21766
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21767
+  (0.1ms) SAVEPOINT active_record_1
21768
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 35, '')
21769
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21770
+ Wordpress::PostTag Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_terms`.`name` = 'bar' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
21771
+  (0.1ms) SAVEPOINT active_record_1
21772
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21773
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
21774
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21775
+  (0.1ms) SAVEPOINT active_record_1
21776
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 36, '')
21777
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21778
+ 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` = 54 AND `wp_term_taxonomy`.`term_taxonomy_id` = 34 LIMIT 1
21779
+ 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` = 54 AND `wp_term_taxonomy`.`term_taxonomy_id` = 35 LIMIT 1
21780
+ 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` = 54
21781
+  (0.1ms) SAVEPOINT active_record_1
21782
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-07-17 22:44:22', `post_modified_gmt` = '2016-07-17 22:44:22' WHERE `wp_posts`.`ID` = 54
21783
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (34, 54)
21784
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 34
21785
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (35, 54)
21786
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 35
21787
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21788
+  (0.2ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 54
21789
+  (0.4ms) ROLLBACK
21790
+  (0.1ms) BEGIN
21791
+  (0.1ms) COMMIT
21792
+  (0.1ms) BEGIN
21793
+  (0.1ms) SAVEPOINT active_record_1
21794
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21795
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21796
+  (0.1ms) SAVEPOINT active_record_1
21797
+ 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
21798
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21799
+ 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!', '', '', '', '', 45, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'page', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21800
+  (0.2ms) RELEASE SAVEPOINT active_record_1
21801
+  (0.1ms) SAVEPOINT active_record_1
21802
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
21803
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo55', 'foo55')
21804
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21805
+  (0.1ms) SAVEPOINT active_record_1
21806
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo55', 37)
21807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21808
+  (0.1ms) SAVEPOINT active_record_1
21809
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (55, 36)
21810
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 36
21811
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21812
+  (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` = 55
21813
+  (0.1ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 55
21814
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 55 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
21815
+  (0.5ms) ROLLBACK
21816
+  (0.1ms) BEGIN
21817
+  (0.1ms) COMMIT
21818
+  (0.1ms) BEGIN
21819
+  (0.1ms) SAVEPOINT active_record_1
21820
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `display_name`) VALUES ('LOGIN', 'password', 'NICE NAME', 'email@test.local', 'users/test', '2016-07-17 22:44:22', 'ACTIVATIONKEY', 'DISPLAY NAME')
21821
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21822
+  (0.1ms) SAVEPOINT active_record_1
21823
+ 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
21824
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
21825
+ 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', '\'', 46, '2016-07-17 22:44:22', '2016-07-17 22:44:22', 'test', '2016-07-17 22:44:22', '2016-07-17 22:44:22')
21826
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21827
+  (0.1ms) SAVEPOINT active_record_1
21828
+ SQL (0.2ms) INSERT INTO `wp_postmeta` (`meta_key`, `meta_value`, `post_id`) VALUES ('foo', 'TEST', 56)
21829
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21830
+ Wordpress::Postmeta Load (0.2ms) SELECT `wp_postmeta`.* FROM `wp_postmeta` WHERE `wp_postmeta`.`post_id` = 56
21831
+  (0.4ms) ROLLBACK