rails_wordpress 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8875,3 +8875,1187 @@ Mysql2::Error: Unknown column 'wp_posts.user_id' in 'where clause': SELECT `wp_p
8875
8875
   (0.1ms) COMMIT
8876
8876
   (0.1ms) BEGIN
8877
8877
   (0.1ms) ROLLBACK
8878
+ ActiveRecord::SchemaMigration Load (17.7ms) SELECT `schema_migrations`.* FROM `schema_migrations`
8879
+  (85.8ms) DROP DATABASE IF EXISTS `wp_test`
8880
+  (4.7ms) CREATE DATABASE `wp_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
8881
+  (30.3ms) 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
8882
+  (13.4ms) CREATE INDEX `comment_id` USING btree ON `wp_commentmeta` (`comment_id`)
8883
+  (11.7ms) CREATE INDEX `meta_key` USING btree ON `wp_commentmeta` (`meta_key`) 
8884
+  (12.6ms) 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
8885
+  (14.3ms) CREATE INDEX `comment_approved_date_gmt` USING btree ON `wp_comments` (`comment_approved`, `comment_date_gmt`) 
8886
+  (11.9ms) CREATE INDEX `comment_author_email` USING btree ON `wp_comments` (`comment_author_email`(10))
8887
+  (14.6ms) CREATE INDEX `comment_date_gmt` USING btree ON `wp_comments` (`comment_date_gmt`) 
8888
+  (12.7ms) CREATE INDEX `comment_parent` USING btree ON `wp_comments` (`comment_parent`)
8889
+  (13.5ms) CREATE INDEX `comment_post_ID` USING btree ON `wp_comments` (`comment_post_ID`) 
8890
+  (12.5ms) 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
8891
+  (13.8ms) CREATE INDEX `link_visible` USING btree ON `wp_links` (`link_visible`) 
8892
+  (13.4ms) 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
8893
+  (13.4ms) CREATE UNIQUE INDEX `option_name` USING btree ON `wp_options` (`option_name`) 
8894
+  (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
8895
+  (11.6ms) CREATE INDEX `meta_key` USING btree ON `wp_postmeta` (`meta_key`) 
8896
+  (12.8ms) CREATE INDEX `post_id` USING btree ON `wp_postmeta` (`post_id`)
8897
+  (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
8898
+  (11.0ms) CREATE INDEX `post_author` USING btree ON `wp_posts` (`post_author`)
8899
+  (12.5ms) CREATE INDEX `post_name` USING btree ON `wp_posts` (`post_name`) 
8900
+  (11.5ms) CREATE INDEX `post_parent` USING btree ON `wp_posts` (`post_parent`)
8901
+  (11.5ms) CREATE INDEX `type_status_date` USING btree ON `wp_posts` (`post_type`, `post_status`, `post_date`, `ID`) 
8902
+  (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
8903
+  (10.5ms) CREATE INDEX `term_taxonomy_id` USING btree ON `wp_term_relationships` (`term_taxonomy_id`) 
8904
+  (10.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
8905
+  (12.0ms) CREATE INDEX `taxonomy` USING btree ON `wp_term_taxonomy` (`taxonomy`) 
8906
+  (11.2ms) CREATE UNIQUE INDEX `term_id_taxonomy` USING btree ON `wp_term_taxonomy` (`term_id`, `taxonomy`)
8907
+  (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
8908
+  (12.2ms) CREATE INDEX `name` USING btree ON `wp_terms` (`name`)
8909
+  (13.1ms) CREATE UNIQUE INDEX `slug` USING btree ON `wp_terms` (`slug`) 
8910
+  (13.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
8911
+  (13.7ms) CREATE INDEX `meta_key` USING btree ON `wp_usermeta` (`meta_key`) 
8912
+  (12.3ms) CREATE INDEX `user_id` USING btree ON `wp_usermeta` (`user_id`)
8913
+  (11.8ms) 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
8914
+  (12.1ms) CREATE INDEX `user_login_key` USING btree ON `wp_users` (`user_login`)
8915
+  (12.7ms) CREATE INDEX `user_nicename` USING btree ON `wp_users` (`user_nicename`) 
8916
+  (11.5ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
8917
+  (14.0ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
8918
+  (0.2ms) SELECT version FROM `schema_migrations`
8919
+  (4.5ms) INSERT INTO `schema_migrations` (version) VALUES ('0')
8920
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
8921
+  (0.9ms) SELECT @@FOREIGN_KEY_CHECKS
8922
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
8923
+  (2258.1ms) SELECT * FROM information_schema.tables
8924
+  (1.0ms) SELECT table_name FROM information_schema.tables WHERE table_schema = 'wp_test' AND table_rows > 0
8925
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 1
8926
+  (0.1ms) BEGIN
8927
+  (0.1ms) COMMIT
8928
+  (0.1ms) BEGIN
8929
+  (0.1ms) SAVEPOINT active_record_1
8930
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
8931
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8932
+  (0.1ms) SAVEPOINT active_record_1
8933
+ 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
8934
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
8935
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 1, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
8936
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8937
+  (5.4ms) ROLLBACK
8938
+  (0.1ms) BEGIN
8939
+  (0.1ms) COMMIT
8940
+  (0.1ms) BEGIN
8941
+  (0.1ms) SAVEPOINT active_record_1
8942
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
8943
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8944
+  (0.1ms) SAVEPOINT active_record_1
8945
+ 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
8946
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
8947
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 2, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
8948
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8949
+  (0.1ms) SAVEPOINT active_record_1
8950
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
8951
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo19', 'foo19')
8952
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8953
+  (0.1ms) SAVEPOINT active_record_1
8954
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo19', 1)
8955
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8956
+  (0.1ms) SAVEPOINT active_record_1
8957
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (2, 1)
8958
+ SQL (24.3ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 1
8959
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8960
+  (0.8ms) 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` = 2
8961
+  (0.2ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 2
8962
+ 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
8963
+  (0.7ms) ROLLBACK
8964
+  (0.1ms) BEGIN
8965
+  (0.1ms) COMMIT
8966
+  (0.1ms) BEGIN
8967
+  (0.1ms) SAVEPOINT active_record_1
8968
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
8969
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8970
+  (0.1ms) SAVEPOINT active_record_1
8971
+ 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
8972
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
8973
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 3, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
8974
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8975
+ 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
8976
+  (0.1ms) SAVEPOINT active_record_1
8977
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
8978
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
8979
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8980
+  (0.1ms) SAVEPOINT active_record_1
8981
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 2, '')
8982
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8983
+ 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
8984
+  (0.1ms) SAVEPOINT active_record_1
8985
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
8986
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
8987
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8988
+  (0.1ms) SAVEPOINT active_record_1
8989
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 3, '')
8990
+  (0.1ms) RELEASE SAVEPOINT active_record_1
8991
+ Wordpress::PostTag Exists (6.0ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 3 AND `wp_term_taxonomy`.`term_taxonomy_id` = 2 LIMIT 1
8992
+ Wordpress::PostTag Exists (0.3ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 3 AND `wp_term_taxonomy`.`term_taxonomy_id` = 3 LIMIT 1
8993
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 3
8994
+  (0.1ms) SAVEPOINT active_record_1
8995
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:00', `post_modified_gmt` = '2016-05-13 13:12:00' WHERE `wp_posts`.`ID` = 3
8996
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (2, 3)
8997
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 2
8998
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (3, 3)
8999
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 3
9000
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9001
+  (0.3ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 3
9002
+  (0.4ms) ROLLBACK
9003
+  (0.1ms) BEGIN
9004
+  (0.1ms) COMMIT
9005
+  (0.1ms) BEGIN
9006
+  (0.1ms) SAVEPOINT active_record_1
9007
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9008
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9009
+  (0.1ms) SAVEPOINT active_record_1
9010
+ 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
9011
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9012
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 4, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9014
+  (0.1ms) SAVEPOINT active_record_1
9015
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9016
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
9017
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9018
+  (0.1ms) SAVEPOINT active_record_1
9019
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 4)
9020
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9021
+  (0.1ms) SAVEPOINT active_record_1
9022
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (4, 4)
9023
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 4
9024
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9025
+  (0.1ms) SAVEPOINT active_record_1
9026
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:00', `post_modified_gmt` = '2016-05-13 13:12:00' WHERE `wp_posts`.`ID` = 4
9027
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9028
+ 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` = 4 AND `wp_term_taxonomy`.`term_taxonomy_id` = 4 LIMIT 1
9029
+  (6.1ms) ROLLBACK
9030
+  (0.1ms) BEGIN
9031
+  (0.1ms) COMMIT
9032
+  (0.1ms) BEGIN
9033
+  (0.1ms) SAVEPOINT active_record_1
9034
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9035
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9036
+  (0.1ms) SAVEPOINT active_record_1
9037
+ 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
9038
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9039
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 5, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9040
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9041
+  (0.1ms) SAVEPOINT active_record_1
9042
+ Wordpress::Term Exists (10.8ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9043
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
9044
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9045
+  (0.1ms) SAVEPOINT active_record_1
9046
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 5)
9047
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9048
+ 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` = 5 LIMIT 1
9049
+ 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` = 5 AND `wp_term_taxonomy`.`term_taxonomy_id` = 5 LIMIT 1
9050
+ 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
9051
+  (0.1ms) SAVEPOINT active_record_1
9052
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:00', `post_modified_gmt` = '2016-05-13 13:12:00' WHERE `wp_posts`.`ID` = 5
9053
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (5, 5)
9054
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 5
9055
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9056
+ 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
9057
+ 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
9058
+ 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
9059
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 5
9060
+ 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
9061
+  (0.1ms) SAVEPOINT active_record_1
9062
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9063
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
9064
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9065
+  (0.1ms) SAVEPOINT active_record_1
9066
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Foo', 6)
9067
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9068
+ 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
9069
+  (0.1ms) SAVEPOINT active_record_1
9070
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9071
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
9072
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9073
+  (0.1ms) SAVEPOINT active_record_1
9074
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Bar', 7)
9075
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9076
+ 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` = 6 LIMIT 1
9077
+ 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` = 7 LIMIT 1
9078
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 5 LIMIT 1
9079
+ 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` = 5 AND `wp_term_taxonomy`.`term_taxonomy_id` = 6 LIMIT 1
9080
+ 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` = 5 AND `wp_term_taxonomy`.`term_taxonomy_id` = 7 LIMIT 1
9081
+ 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
9082
+  (0.1ms) SAVEPOINT active_record_1
9083
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 5 LIMIT 1
9084
+ 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, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '5-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:00', '2016-05-13 13:12:00', '', '179810ec-df5e-4f41-bda9-2cf04cc0b5da', 5)
9085
+ 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` = 5
9086
+ SQL (0.7ms) DELETE FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`term_taxonomy_id` = 5
9087
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:00', `post_modified_gmt` = '2016-05-13 13:12:00' WHERE `wp_posts`.`ID` = 5
9088
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (6, 5)
9089
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 6
9090
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (7, 5)
9091
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 7
9092
+ 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
9093
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9094
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 5 LIMIT 1
9095
+ 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
9096
+ 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
9097
+ Wordpress::Term Load (0.3ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 6 LIMIT 1
9098
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 7 LIMIT 1
9099
+  (6.2ms) ROLLBACK
9100
+  (0.1ms) BEGIN
9101
+  (0.1ms) COMMIT
9102
+  (0.1ms) BEGIN
9103
+  (0.1ms) SAVEPOINT active_record_1
9104
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9106
+  (0.1ms) SAVEPOINT active_record_1
9107
+ 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
9108
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9109
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 6, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9110
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9111
+  (0.1ms) SAVEPOINT active_record_1
9112
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9113
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
9114
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9115
+  (0.1ms) SAVEPOINT active_record_1
9116
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 8)
9117
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9118
+ 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` = 8 LIMIT 1
9119
+ 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` = 7 AND `wp_term_taxonomy`.`term_taxonomy_id` = 8 LIMIT 1
9120
+ 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
9121
+  (0.1ms) SAVEPOINT active_record_1
9122
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:00', `post_modified_gmt` = '2016-05-13 13:12:00' WHERE `wp_posts`.`ID` = 7
9123
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (8, 7)
9124
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 8
9125
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9126
+ 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` = 7
9127
+  (0.5ms) ROLLBACK
9128
+  (0.1ms) BEGIN
9129
+  (0.1ms) COMMIT
9130
+  (0.1ms) BEGIN
9131
+  (0.1ms) SAVEPOINT active_record_1
9132
+ SQL (0.3ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9133
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9134
+  (0.1ms) SAVEPOINT active_record_1
9135
+ 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
9136
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9137
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 7, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9138
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9139
+  (0.1ms) SAVEPOINT active_record_1
9140
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9141
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
9142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9143
+  (0.1ms) SAVEPOINT active_record_1
9144
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 9)
9145
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9146
+ 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
9147
+ 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` = 8 AND `wp_term_taxonomy`.`term_taxonomy_id` = 9 LIMIT 1
9148
+ 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
9149
+  (0.1ms) SAVEPOINT active_record_1
9150
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:00', `post_modified_gmt` = '2016-05-13 13:12:00' WHERE `wp_posts`.`ID` = 8
9151
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (9, 8)
9152
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 9
9153
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9154
+ 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` = 8
9155
+  (0.5ms) ROLLBACK
9156
+  (0.1ms) BEGIN
9157
+  (0.1ms) COMMIT
9158
+  (0.1ms) BEGIN
9159
+  (0.1ms) SAVEPOINT active_record_1
9160
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9161
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9162
+  (0.1ms) SAVEPOINT active_record_1
9163
+ 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
9164
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9165
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 8, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9167
+  (0.1ms) SAVEPOINT active_record_1
9168
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9169
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
9170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9171
+  (0.1ms) SAVEPOINT active_record_1
9172
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 10)
9173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9174
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 10 LIMIT 1
9175
+ 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
9176
+ 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
9177
+ 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` = 9 AND `wp_term_taxonomy`.`term_taxonomy_id` = 10 LIMIT 1
9178
+ Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 9
9179
+  (0.1ms) SAVEPOINT active_record_1
9180
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:00', `post_modified_gmt` = '2016-05-13 13:12:00' WHERE `wp_posts`.`ID` = 9
9181
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (10, 9)
9182
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 10
9183
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9184
+ Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 9
9185
+  (0.4ms) ROLLBACK
9186
+  (0.1ms) BEGIN
9187
+  (0.1ms) COMMIT
9188
+  (0.1ms) BEGIN
9189
+  (0.1ms) SAVEPOINT active_record_1
9190
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9191
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9192
+  (0.1ms) SAVEPOINT active_record_1
9193
+ 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
9194
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9195
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 9, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9196
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9197
+  (0.1ms) SAVEPOINT active_record_1
9198
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9199
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
9200
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9201
+  (0.1ms) SAVEPOINT active_record_1
9202
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 11)
9203
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9204
+  (0.1ms) SAVEPOINT active_record_1
9205
+ SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (10, 11)
9206
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 11
9207
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9208
+ 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
9209
+  (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` = 10
9210
+ 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 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
9211
+ 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 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` DESC LIMIT 1
9212
+  (0.5ms) ROLLBACK
9213
+  (0.1ms) BEGIN
9214
+  (0.1ms) COMMIT
9215
+  (0.1ms) BEGIN
9216
+  (0.1ms) SAVEPOINT active_record_1
9217
+ SQL (0.5ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9218
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9219
+  (0.1ms) SAVEPOINT active_record_1
9220
+ 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
9221
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9222
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 10, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9223
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9224
+  (0.1ms) SAVEPOINT active_record_1
9225
+ Wordpress::Term Exists (0.4ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9226
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
9227
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9228
+  (0.1ms) SAVEPOINT active_record_1
9229
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 12)
9230
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9231
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 12 LIMIT 1
9232
+ Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 0 AND `wp_terms`.`name` = 'Foobar' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
9233
+ Wordpress::Category Load (0.3ms) 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
9234
+ Wordpress::Category Exists (0.5ms) SELECT 1 AS one FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 11 AND `wp_term_taxonomy`.`term_taxonomy_id` = 12 LIMIT 1
9235
+ 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` = 11
9236
+  (0.1ms) SAVEPOINT active_record_1
9237
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:00', `post_modified_gmt` = '2016-05-13 13:12:00' WHERE `wp_posts`.`ID` = 11
9238
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (12, 11)
9239
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 12
9240
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9241
+ 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
9242
+  (0.4ms) ROLLBACK
9243
+  (0.1ms) BEGIN
9244
+  (0.1ms) COMMIT
9245
+  (0.1ms) BEGIN
9246
+  (0.1ms) SAVEPOINT active_record_1
9247
+ SQL (0.5ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9248
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9249
+  (0.1ms) SAVEPOINT active_record_1
9250
+ 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
9251
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9252
+ SQL (0.1ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 11, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9253
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9254
+  (0.1ms) SAVEPOINT active_record_1
9255
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9256
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foobar', 'foobar')
9257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
9258
+  (0.1ms) SAVEPOINT active_record_1
9259
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes Foobar', 13)
9260
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9261
+  (0.1ms) SAVEPOINT active_record_1
9262
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (12, 13)
9263
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 13
9264
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9265
+  (0.1ms) SAVEPOINT active_record_1
9266
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:00', `post_modified_gmt` = '2016-05-13 13:12:00' WHERE `wp_posts`.`ID` = 12
9267
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9268
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 13 LIMIT 1
9269
+ Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 12
9270
+  (0.4ms) ROLLBACK
9271
+  (0.1ms) BEGIN
9272
+  (0.1ms) COMMIT
9273
+  (0.1ms) BEGIN
9274
+  (0.1ms) SAVEPOINT active_record_1
9275
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9276
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9277
+  (0.1ms) SAVEPOINT active_record_1
9278
+ 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
9279
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9280
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '', 12, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9281
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9282
+  (0.3ms) ROLLBACK
9283
+  (0.1ms) BEGIN
9284
+  (0.1ms) COMMIT
9285
+  (0.1ms) BEGIN
9286
+  (0.2ms) SAVEPOINT active_record_1
9287
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9289
+  (0.1ms) SAVEPOINT active_record_1
9290
+ 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
9291
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9292
+ 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!', '', '', '', '', 13, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'page', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9293
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9294
+  (0.3ms) ROLLBACK
9295
+  (0.1ms) BEGIN
9296
+  (0.1ms) COMMIT
9297
+  (0.1ms) BEGIN
9298
+  (0.1ms) SAVEPOINT active_record_1
9299
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9300
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9301
+  (0.1ms) SAVEPOINT active_record_1
9302
+ 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
9303
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9304
+ 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!', '', '', '', '', 14, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'page', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9305
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9306
+  (0.1ms) SAVEPOINT active_record_1
9307
+ Wordpress::Term Exists (0.4ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9308
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo32', 'foo32')
9309
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9310
+  (0.1ms) SAVEPOINT active_record_1
9311
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes foo32', 14)
9312
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9313
+  (0.1ms) SAVEPOINT active_record_1
9314
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (15, 14)
9315
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 14
9316
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9317
+  (0.2ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 15
9318
+  (0.2ms) SELECT COUNT(*) FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 15
9319
+ Wordpress::PostTag Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 15 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
9320
+  (0.4ms) ROLLBACK
9321
+  (0.1ms) BEGIN
9322
+  (0.1ms) COMMIT
9323
+  (0.1ms) BEGIN
9324
+  (0.1ms) SAVEPOINT active_record_1
9325
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9327
+  (0.1ms) SAVEPOINT active_record_1
9328
+ 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
9329
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9330
+ 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!', '', '', '', '', 15, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'page', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9332
+ 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
9333
+  (0.1ms) SAVEPOINT active_record_1
9334
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9335
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('foo', 'foo')
9336
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9337
+  (0.1ms) SAVEPOINT active_record_1
9338
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 15, '')
9339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9340
+ 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
9341
+  (0.1ms) SAVEPOINT active_record_1
9342
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9343
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('bar', 'bar')
9344
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9345
+  (0.1ms) SAVEPOINT active_record_1
9346
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 16, '')
9347
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9348
+ 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` = 16 AND `wp_term_taxonomy`.`term_taxonomy_id` = 15 LIMIT 1
9349
+ 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` = 16 AND `wp_term_taxonomy`.`term_taxonomy_id` = 16 LIMIT 1
9350
+ 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
9351
+  (0.1ms) SAVEPOINT active_record_1
9352
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:00', `post_modified_gmt` = '2016-05-13 13:12:00' WHERE `wp_posts`.`ID` = 16
9353
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (15, 16)
9354
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 15
9355
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`term_taxonomy_id`, `object_id`) VALUES (16, 16)
9356
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 16
9357
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9358
+  (0.3ms) SELECT COUNT(*) FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 16
9359
+  (0.5ms) ROLLBACK
9360
+  (0.1ms) BEGIN
9361
+  (0.1ms) COMMIT
9362
+  (0.1ms) BEGIN
9363
+  (0.1ms) SAVEPOINT active_record_1
9364
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:00')
9365
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9366
+  (0.1ms) SAVEPOINT active_record_1
9367
+ 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
9368
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9369
+ SQL (0.1ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 16, '2016-05-13 13:12:00', '2016-05-13 13:12:00', 'test', '2016-05-13 13:12:00', '2016-05-13 13:12:00')
9370
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9371
+  (0.1ms) SAVEPOINT active_record_1
9372
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9373
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
9374
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9375
+  (0.1ms) SAVEPOINT active_record_1
9376
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 17)
9377
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9378
+  (0.1ms) SAVEPOINT active_record_1
9379
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (17, 17)
9380
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 17
9381
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9382
+  (0.1ms) SAVEPOINT active_record_1
9383
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9384
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
9385
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9386
+  (0.1ms) SAVEPOINT active_record_1
9387
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 18)
9388
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9389
+  (0.1ms) SAVEPOINT active_record_1
9390
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (17, 18)
9391
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 18
9392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9393
+ 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` = 17 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
9394
+ 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` = 17
9395
+  (0.1ms) SAVEPOINT active_record_1
9396
+ Wordpress::Relationship Load (0.2ms) SELECT `wp_term_relationships`.* FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 17 AND `wp_term_relationships`.`term_taxonomy_id` IN (17, 18)
9397
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 17 LIMIT 1
9398
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 17
9399
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 18 LIMIT 1
9400
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 18
9401
+ SQL (0.1ms) DELETE FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 17 AND `wp_term_relationships`.`term_taxonomy_id` IN (17, 18)
9402
+ 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` = 17
9403
+ SQL (0.2ms) DELETE FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 17
9404
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9405
+ 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` = 17 LIMIT 1
9406
+ 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` = 18 LIMIT 1
9407
+  (0.4ms) ROLLBACK
9408
+  (0.1ms) BEGIN
9409
+  (0.1ms) COMMIT
9410
+  (0.0ms) BEGIN
9411
+  (0.1ms) SAVEPOINT active_record_1
9412
+ SQL (0.6ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9413
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9414
+  (0.1ms) SAVEPOINT active_record_1
9415
+ 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
9416
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9417
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 17, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9419
+  (0.1ms) SAVEPOINT active_record_1
9420
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9421
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
9422
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9423
+  (0.1ms) SAVEPOINT active_record_1
9424
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 19)
9425
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9426
+  (0.1ms) SAVEPOINT active_record_1
9427
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (18, 19)
9428
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 19
9429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9430
+  (0.1ms) SAVEPOINT active_record_1
9431
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9432
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
9433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9434
+  (0.1ms) SAVEPOINT active_record_1
9435
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 20)
9436
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9437
+  (0.1ms) SAVEPOINT active_record_1
9438
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (18, 20)
9439
+ SQL (0.1ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 20
9440
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9441
+  (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` = 18
9442
+  (0.4ms) ROLLBACK
9443
+  (0.1ms) BEGIN
9444
+  (0.1ms) COMMIT
9445
+  (0.1ms) BEGIN
9446
+  (0.1ms) SAVEPOINT active_record_1
9447
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9448
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9449
+  (0.1ms) SAVEPOINT active_record_1
9450
+ 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
9451
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9452
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 18, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9453
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9454
+  (0.1ms) SAVEPOINT active_record_1
9455
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9456
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
9457
+  (0.2ms) RELEASE SAVEPOINT active_record_1
9458
+  (0.1ms) SAVEPOINT active_record_1
9459
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 21)
9460
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9461
+  (0.1ms) SAVEPOINT active_record_1
9462
+ SQL (0.3ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (19, 21)
9463
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 21
9464
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9465
+  (0.1ms) SAVEPOINT active_record_1
9466
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9467
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
9468
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9469
+  (0.1ms) SAVEPOINT active_record_1
9470
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 22)
9471
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9472
+  (0.1ms) SAVEPOINT active_record_1
9473
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (19, 22)
9474
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 22
9475
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9476
+ 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` = 19 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
9477
+ 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` = 19
9478
+  (0.1ms) SAVEPOINT active_record_1
9479
+ Wordpress::Relationship Load (0.2ms) SELECT `wp_term_relationships`.* FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 19 AND `wp_term_relationships`.`term_taxonomy_id` IN (21, 22)
9480
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 21 LIMIT 1
9481
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 21
9482
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 22 LIMIT 1
9483
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 0 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 22
9484
+ SQL (0.2ms) DELETE FROM `wp_term_relationships` WHERE `wp_term_relationships`.`object_id` = 19 AND `wp_term_relationships`.`term_taxonomy_id` IN (21, 22)
9485
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9486
+ 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` = 21 LIMIT 1
9487
+ 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` = 22 LIMIT 1
9488
+  (0.5ms) ROLLBACK
9489
+  (0.1ms) BEGIN
9490
+  (0.1ms) COMMIT
9491
+  (0.1ms) BEGIN
9492
+  (0.1ms) SAVEPOINT active_record_1
9493
+ SQL (0.6ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9494
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9495
+  (0.1ms) SAVEPOINT active_record_1
9496
+ 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
9497
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9498
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 19, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9499
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9500
+  (0.1ms) SAVEPOINT active_record_1
9501
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9502
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Foo', 'foo')
9503
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9504
+  (0.1ms) SAVEPOINT active_record_1
9505
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Foo', 23)
9506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9507
+  (0.1ms) SAVEPOINT active_record_1
9508
+ SQL (0.2ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (20, 23)
9509
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 23
9510
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9511
+  (0.1ms) SAVEPOINT active_record_1
9512
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9513
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Bar', 'bar')
9514
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9515
+  (0.1ms) SAVEPOINT active_record_1
9516
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Bar', 24)
9517
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9518
+  (0.1ms) SAVEPOINT active_record_1
9519
+ SQL (0.1ms) INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`) VALUES (20, 24)
9520
+ SQL (0.2ms) UPDATE `wp_term_taxonomy` SET `count` = 1 WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 24
9521
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9522
+ 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` = 20 ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
9523
+ 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
9524
+  (0.5ms) ROLLBACK
9525
+  (0.1ms) BEGIN
9526
+  (0.1ms) COMMIT
9527
+  (0.1ms) BEGIN
9528
+ Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 0 AND `wp_terms`.`name` = 'Parent' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
9529
+  (0.1ms) SAVEPOINT active_record_1
9530
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9531
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Parent', 'parent')
9532
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9533
+  (0.1ms) SAVEPOINT active_record_1
9534
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Parent', 25)
9535
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9536
+ 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` = 25 AND `wp_terms`.`name` = 'Child' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
9537
+  (0.1ms) SAVEPOINT active_record_1
9538
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9539
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Child', 'child')
9540
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9541
+  (0.1ms) SAVEPOINT active_record_1
9542
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`, `parent`) VALUES ('category', 'Child', 26, 25)
9543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9544
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 25 LIMIT 1
9545
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 25 LIMIT 1
9546
+ Wordpress::Taxonomy Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 0 LIMIT 1
9547
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 26 LIMIT 1
9548
+ 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` = 25
9549
+  (0.4ms) ROLLBACK
9550
+  (0.1ms) BEGIN
9551
+  (0.1ms) COMMIT
9552
+  (0.1ms) BEGIN
9553
+  (0.1ms) SAVEPOINT active_record_1
9554
+ Wordpress::Term Exists (0.2ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9555
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('General', 'general')
9556
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9557
+  (0.1ms) SAVEPOINT active_record_1
9558
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes General', 27)
9559
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9560
+ Wordpress::Term Load (0.2ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 27 LIMIT 1
9561
+  (0.3ms) ROLLBACK
9562
+  (0.1ms) BEGIN
9563
+  (0.1ms) COMMIT
9564
+  (0.1ms) BEGIN
9565
+ Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 0 AND `wp_terms`.`name` = 'Big Bang' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
9566
+  (0.1ms) SAVEPOINT active_record_1
9567
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9568
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Big Bang', 'big-bang')
9569
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9570
+  (0.1ms) SAVEPOINT active_record_1
9571
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Big Bang', 28)
9572
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9573
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 28 LIMIT 1
9574
+ Wordpress::Taxonomy Load (0.1ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` WHERE `wp_term_taxonomy`.`term_taxonomy_id` = 0 LIMIT 1
9575
+  (0.4ms) ROLLBACK
9576
+  (0.1ms) BEGIN
9577
+  (0.1ms) COMMIT
9578
+  (0.1ms) BEGIN
9579
+  (0.1ms) SAVEPOINT active_record_1
9580
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9581
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('General', 'general')
9582
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9583
+  (0.1ms) SAVEPOINT active_record_1
9584
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('category', 'Describes General', 29)
9585
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9586
+ Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_taxonomy`.`parent` = 0 AND `wp_terms`.`name` = 'General' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
9587
+  (0.3ms) ROLLBACK
9588
+  (0.1ms) BEGIN
9589
+  (0.1ms) COMMIT
9590
+  (0.1ms) BEGIN
9591
+  (0.1ms) SAVEPOINT active_record_1
9592
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
9593
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello', 'hello')
9594
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9595
+  (0.3ms) ROLLBACK
9596
+  (0.1ms) BEGIN
9597
+  (0.1ms) COMMIT
9598
+  (0.1ms) BEGIN
9599
+  (0.1ms) ROLLBACK
9600
+  (0.1ms) BEGIN
9601
+  (0.1ms) COMMIT
9602
+  (0.0ms) BEGIN
9603
+  (0.1ms) ROLLBACK
9604
+  (0.1ms) BEGIN
9605
+  (0.1ms) COMMIT
9606
+  (0.1ms) BEGIN
9607
+  (0.1ms) SAVEPOINT active_record_1
9608
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9609
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9610
+  (0.3ms) ROLLBACK
9611
+  (0.1ms) BEGIN
9612
+  (0.1ms) COMMIT
9613
+  (0.1ms) BEGIN
9614
+  (0.1ms) SAVEPOINT active_record_1
9615
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9616
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9617
+  (0.1ms) SAVEPOINT active_record_1
9618
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9619
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9620
+  (0.1ms) SAVEPOINT active_record_1
9621
+ 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
9622
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9623
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 21, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9624
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9625
+  (0.1ms) SAVEPOINT active_record_1
9626
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9627
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9628
+  (0.1ms) SAVEPOINT active_record_1
9629
+ 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
9630
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9631
+ 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', '\'', 21, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9632
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9633
+ Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`post_author` = 21
9634
+  (0.4ms) ROLLBACK
9635
+  (0.1ms) BEGIN
9636
+  (0.1ms) COMMIT
9637
+  (0.1ms) BEGIN
9638
+  (0.1ms) SAVEPOINT active_record_1
9639
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9640
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9641
+  (0.1ms) SAVEPOINT active_record_1
9642
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9643
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9644
+  (0.1ms) SAVEPOINT active_record_1
9645
+ 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
9646
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9647
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 24, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9648
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9649
+  (0.4ms) ROLLBACK
9650
+  (0.1ms) BEGIN
9651
+  (0.1ms) COMMIT
9652
+  (0.1ms) BEGIN
9653
+  (0.1ms) SAVEPOINT active_record_1
9654
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9655
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9656
+  (0.1ms) SAVEPOINT active_record_1
9657
+ 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
9658
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9659
+ 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-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9660
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9661
+ 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
9662
+ 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
9663
+ 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
9664
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 24
9665
+  (0.1ms) SAVEPOINT active_record_1
9666
+ 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
9667
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 26 LIMIT 1
9668
+ 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', 26, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '24-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', '862a4838-eb85-4c8f-9db7-c619971c7267', 24)
9669
+ 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` = 24
9670
+ 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
9671
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 24
9672
+ 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
9673
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9674
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 24
9675
+  (0.5ms) ROLLBACK
9676
+  (0.1ms) BEGIN
9677
+  (0.1ms) COMMIT
9678
+  (0.1ms) BEGIN
9679
+  (0.1ms) SAVEPOINT active_record_1
9680
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9681
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9682
+  (0.1ms) SAVEPOINT active_record_1
9683
+ 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
9684
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9685
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 27, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9687
+ 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
9688
+ 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
9689
+ 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
9690
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 26
9691
+  (0.1ms) SAVEPOINT active_record_1
9692
+ 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
9693
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 27 LIMIT 1
9694
+ 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', 27, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'CONTENT', 'Test', 'EXCERPT', 'inherit', '26-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', '8cc50396-ad78-417b-a179-4a44dc858885', 26)
9695
+ 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
9696
+ 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
9697
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 26
9698
+ 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
9699
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9700
+  (0.5ms) ROLLBACK
9701
+  (0.1ms) BEGIN
9702
+  (0.1ms) COMMIT
9703
+  (0.1ms) BEGIN
9704
+  (0.1ms) SAVEPOINT active_record_1
9705
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9706
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9707
+  (0.1ms) SAVEPOINT active_record_1
9708
+ 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
9709
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9710
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 28, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9711
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9712
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 28 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9713
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 28 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9714
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 28 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9715
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 28
9716
+  (0.4ms) ROLLBACK
9717
+  (0.1ms) BEGIN
9718
+  (0.1ms) COMMIT
9719
+  (0.1ms) BEGIN
9720
+  (0.1ms) SAVEPOINT active_record_1
9721
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9723
+  (0.1ms) SAVEPOINT active_record_1
9724
+ 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
9725
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9726
+ 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', '\'', 29, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9727
+  (33.9ms) RELEASE SAVEPOINT active_record_1
9728
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9729
+ 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
9730
+ 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
9731
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 29
9732
+  (0.4ms) ROLLBACK
9733
+  (0.1ms) BEGIN
9734
+  (0.1ms) COMMIT
9735
+  (0.1ms) BEGIN
9736
+  (0.1ms) SAVEPOINT active_record_1
9737
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9738
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9739
+  (0.1ms) SAVEPOINT active_record_1
9740
+ 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
9741
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9742
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 30, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9743
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9744
+  (0.1ms) SAVEPOINT active_record_1
9745
+ 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` = 30
9746
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9747
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 30 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9748
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 30 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9749
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 30
9750
+  (0.1ms) SAVEPOINT active_record_1
9751
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 30 LIMIT 1
9752
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 30 LIMIT 1
9753
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 30, '2009-01-01 00:00:00', '2016-05-13 13:12:01', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '30-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', 'b357e57d-5fa1-404d-afd4-7566d8b4ad69', 30)
9754
+ 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` = 30
9755
+ 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` = 30
9756
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 30
9757
+ 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
9758
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9759
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 30 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9760
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 30 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9761
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 30
9762
+  (0.1ms) SAVEPOINT active_record_1
9763
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 30 LIMIT 1
9764
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 30 LIMIT 1
9765
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 30, '2009-01-01 00:00:00', '2016-05-13 13:12:01', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '30-revision-v2', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', 'f2c473d4-e688-48cd-b8dd-b87c2822045d', 30)
9766
+ 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` = 30
9767
+ 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` = 30
9768
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 30
9769
+ 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
9770
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9771
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 30 LIMIT 1
9772
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 30 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9773
+  (0.6ms) ROLLBACK
9774
+  (0.1ms) BEGIN
9775
+  (0.1ms) COMMIT
9776
+  (0.1ms) BEGIN
9777
+  (0.1ms) SAVEPOINT active_record_1
9778
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9779
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9780
+  (0.1ms) SAVEPOINT active_record_1
9781
+ 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
9782
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9783
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 31, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9784
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9785
+  (0.1ms) SAVEPOINT active_record_1
9786
+ 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` = 33
9787
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9788
+ 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
9789
+ 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
9790
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 33
9791
+  (0.1ms) SAVEPOINT active_record_1
9792
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 33 LIMIT 1
9793
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 31 LIMIT 1
9794
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 31, '2009-01-01 00:00:00', '2016-05-13 13:12:01', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '33-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', '88cbf913-fa96-4522-a18d-648f4b9c41d4', 33)
9795
+ 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
9796
+ 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
9797
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 33
9798
+ 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
9799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9800
+ 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
9801
+ 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
9802
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 33
9803
+  (0.1ms) SAVEPOINT active_record_1
9804
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 33 LIMIT 1
9805
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 31 LIMIT 1
9806
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 31, '2009-01-01 00:00:00', '2016-05-13 13:12:01', 'Revised Content', 'Test', 'ANOTHER', 'inherit', '33-revision-v2', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', '50f36ee0-bef5-44f1-9352-a51423a15390', 33)
9807
+ 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
9808
+ 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
9809
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 33
9810
+ 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
9811
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9812
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 33 LIMIT 1
9813
+ 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
9814
+  (0.3ms) ROLLBACK
9815
+  (0.1ms) BEGIN
9816
+  (0.1ms) COMMIT
9817
+  (0.1ms) BEGIN
9818
+  (0.1ms) SAVEPOINT active_record_1
9819
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9820
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9821
+  (0.1ms) SAVEPOINT active_record_1
9822
+ 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
9823
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9824
+ 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', '\'', 32, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9825
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9826
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 36 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9827
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 36 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9828
+  (0.1ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 36
9829
+  (0.1ms) SAVEPOINT active_record_1
9830
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 36 LIMIT 1
9831
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 32 LIMIT 1
9832
+ 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', 32, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '36-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', 'c438c528-1753-4b5a-b8b4-8b3d5538d92b', 36)
9833
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 36
9834
+ 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
9835
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 36
9836
+ 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
9837
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9838
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 36 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9839
+  (0.5ms) ROLLBACK
9840
+  (0.1ms) BEGIN
9841
+  (0.1ms) COMMIT
9842
+  (0.1ms) BEGIN
9843
+  (0.1ms) SAVEPOINT active_record_1
9844
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9845
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9846
+  (0.1ms) SAVEPOINT active_record_1
9847
+ 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
9848
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9849
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 33, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9850
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9851
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 38 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9852
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 38 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9853
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 38
9854
+  (0.4ms) ROLLBACK
9855
+  (0.1ms) BEGIN
9856
+  (0.1ms) COMMIT
9857
+  (0.1ms) BEGIN
9858
+  (0.1ms) SAVEPOINT active_record_1
9859
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9860
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9861
+  (0.1ms) SAVEPOINT active_record_1
9862
+ 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
9863
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9864
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 34, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9865
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9866
+  (0.1ms) SAVEPOINT active_record_1
9867
+ 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` = 39
9868
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9869
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 39 LIMIT 1
9870
+ 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
9871
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 39 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9872
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 39 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9873
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 39 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9874
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 39
9875
+  (0.1ms) SAVEPOINT active_record_1
9876
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 39 LIMIT 1
9877
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 34 LIMIT 1
9878
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 34, '2009-01-01 00:00:00', '2016-05-13 13:12:01', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '39-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', '47eb6b2a-0991-483f-8db4-71f7eef00baf', 39)
9879
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 39
9880
+ 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
9881
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 39
9882
+ 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
9883
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9884
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 39 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9885
+  (0.5ms) ROLLBACK
9886
+  (0.1ms) BEGIN
9887
+  (0.1ms) COMMIT
9888
+  (0.1ms) BEGIN
9889
+  (0.1ms) SAVEPOINT active_record_1
9890
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9891
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9892
+  (0.1ms) SAVEPOINT active_record_1
9893
+ 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
9894
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9895
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 35, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9896
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9897
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 41 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9898
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 41 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9899
+ Wordpress::Revision Load (0.5ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 41 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9900
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 41
9901
+  (0.1ms) SAVEPOINT active_record_1
9902
+ Wordpress::Post Load (0.1ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 41 LIMIT 1
9903
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 35 LIMIT 1
9904
+ 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', 35, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '41-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', 'f7b95ebe-b3f4-437e-983e-b1da41226a21', 41)
9905
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 41
9906
+ 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
9907
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 41
9908
+ 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
9909
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9910
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 41 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9911
+  (0.4ms) ROLLBACK
9912
+  (0.1ms) BEGIN
9913
+  (0.1ms) COMMIT
9914
+  (0.1ms) BEGIN
9915
+  (0.1ms) SAVEPOINT active_record_1
9916
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9917
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9918
+  (0.1ms) SAVEPOINT active_record_1
9919
+ 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
9920
+ Wordpress::User Load (0.3ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9921
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 36, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9922
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9923
+  (0.1ms) SAVEPOINT active_record_1
9924
+ 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` = 43
9925
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9926
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 43 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9927
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 43 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9928
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 43
9929
+  (0.1ms) SAVEPOINT active_record_1
9930
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 43 LIMIT 1
9931
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 36 LIMIT 1
9932
+ 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', 36, '2009-01-01 00:00:00', '2016-05-13 13:12:01', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '43-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', '59e30e80-71d3-4e62-8b1b-50e669346cd1', 43)
9933
+ 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
9934
+ Wordpress::Category Load (0.3ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 43
9935
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 43
9936
+ 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
9937
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9938
+  (0.4ms) ROLLBACK
9939
+  (0.1ms) BEGIN
9940
+  (0.1ms) COMMIT
9941
+  (0.1ms) BEGIN
9942
+  (0.1ms) SAVEPOINT active_record_1
9943
+ SQL (0.2ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9944
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9945
+  (0.1ms) SAVEPOINT active_record_1
9946
+ 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
9947
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9948
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 37, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9949
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9950
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 45 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9951
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 45 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9952
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 45
9953
+  (0.1ms) SAVEPOINT active_record_1
9954
+ 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` = 45
9955
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 45 LIMIT 1
9956
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 37 LIMIT 1
9957
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 37, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '45-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', '6e89056f-c6c7-46c4-9b6d-49f5179ed9df', 45)
9958
+ 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` = 45
9959
+ Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 45
9960
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 45
9961
+ 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
9962
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9963
+  (0.1ms) SAVEPOINT active_record_1
9964
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01', `post_name` = 'test' WHERE `wp_posts`.`ID` = 46
9965
+ SQL (0.1ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 45
9966
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9967
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 45 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9968
+  (0.5ms) ROLLBACK
9969
+  (0.1ms) BEGIN
9970
+  (0.1ms) COMMIT
9971
+  (0.1ms) BEGIN
9972
+  (0.1ms) SAVEPOINT active_record_1
9973
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
9974
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9975
+  (0.1ms) SAVEPOINT active_record_1
9976
+ 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
9977
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
9978
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 38, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
9979
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9980
+  (0.1ms) SAVEPOINT active_record_1
9981
+ 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` = 47
9982
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9983
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 47 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9984
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 47 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9985
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 47
9986
+  (0.1ms) SAVEPOINT active_record_1
9987
+ Wordpress::Post Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 47 LIMIT 1
9988
+ Wordpress::User Load (0.2ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 38 LIMIT 1
9989
+ 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', 38, '2009-01-01 00:00:00', '2016-05-13 13:12:01', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '47-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', '85cbd223-5470-49e2-a143-17cbdb0a11a8', 47)
9990
+ 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` = 47
9991
+ Wordpress::Category Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('category') AND `wp_term_relationships`.`object_id` = 47
9992
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 47
9993
+ 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
9994
+  (0.1ms) RELEASE SAVEPOINT active_record_1
9995
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 47 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
9996
+  (0.4ms) ROLLBACK
9997
+  (0.1ms) BEGIN
9998
+  (0.1ms) COMMIT
9999
+  (0.1ms) BEGIN
10000
+  (0.1ms) SAVEPOINT active_record_1
10001
+ SQL (0.1ms) INSERT INTO `wp_users` (`user_login`, `user_registered`) VALUES ('snoopy', '2016-05-13 13:12:01')
10002
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10003
+  (0.1ms) SAVEPOINT active_record_1
10004
+ 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
10005
+ Wordpress::User Load (0.1ms) SELECT `wp_users`.* FROM `wp_users` ORDER BY `wp_users`.`ID` ASC LIMIT 1
10006
+ SQL (0.1ms) INSERT INTO `wp_posts` (`post_title`, `post_content`, `post_excerpt`, `to_ping`, `pinged`, `post_content_filtered`, `post_author`, `post_modified`, `post_modified_gmt`, `post_name`, `post_date`, `post_date_gmt`) VALUES ('Test', 'CONTENT', 'EXCERPT', '127.0.0.1', '127.0.0.1', '\'', 39, '2016-05-13 13:12:01', '2016-05-13 13:12:01', 'test', '2016-05-13 13:12:01', '2016-05-13 13:12:01')
10007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10008
+  (0.1ms) SAVEPOINT active_record_1
10009
+ 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` = 49
10010
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10011
+ Wordpress::Revision Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 49 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10012
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 49 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10013
+  (0.2ms) SELECT COUNT(*) FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 49
10014
+  (0.1ms) SAVEPOINT active_record_1
10015
+ Wordpress::Post Load (0.3ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('post') AND `wp_posts`.`ID` = 49 LIMIT 1
10016
+ Wordpress::User Load (0.3ms) SELECT `wp_users`.* FROM `wp_users` WHERE `wp_users`.`ID` = 39 LIMIT 1
10017
+ SQL (0.2ms) INSERT INTO `wp_posts` (`post_type`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `guid`, `post_parent`) VALUES ('revision', 39, '2009-01-01 00:00:00', '2016-05-13 13:12:01', 'Revised Content', 'Test', 'EXCERPT', 'inherit', '49-revision-v1', '127.0.0.1', '127.0.0.1', '2016-05-13 13:12:01', '2016-05-13 13:12:01', '', '435885d8-d02c-4ef3-8da7-275f4cd29d60', 49)
10018
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_term_relationships` ON `wp_term_taxonomy`.`term_taxonomy_id` = `wp_term_relationships`.`term_taxonomy_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_term_relationships`.`object_id` = 49
10019
+ 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` = 49
10020
+ SQL (0.2ms) UPDATE `wp_posts` SET `post_modified` = '2016-05-13 13:12:01', `post_modified_gmt` = '2016-05-13 13:12:01' WHERE `wp_posts`.`ID` = 49
10021
+ 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
10022
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10023
+ Wordpress::Revision Load (0.2ms) SELECT `wp_posts`.* FROM `wp_posts` WHERE `wp_posts`.`post_type` IN ('revision') AND `wp_posts`.`post_parent` = 49 ORDER BY `wp_posts`.`post_modified` DESC, `wp_posts`.`id` DESC LIMIT 1
10024
+  (0.4ms) ROLLBACK
10025
+  (0.1ms) BEGIN
10026
+  (0.1ms) COMMIT
10027
+  (0.1ms) BEGIN
10028
+  (0.1ms) SAVEPOINT active_record_1
10029
+ Wordpress::Term Exists (0.3ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10030
+ SQL (0.2ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello Again', 'hello-again')
10031
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10032
+  (0.1ms) SAVEPOINT active_record_1
10033
+ SQL (0.2ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Hello Again', 31)
10034
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10035
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 31 LIMIT 1
10036
+  (0.3ms) ROLLBACK
10037
+  (0.1ms) BEGIN
10038
+  (0.0ms) COMMIT
10039
+  (0.0ms) BEGIN
10040
+ 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
10041
+  (0.1ms) SAVEPOINT active_record_1
10042
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10043
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello, Hello!', 'hello-hello')
10044
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10045
+  (0.1ms) SAVEPOINT active_record_1
10046
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `term_id`, `description`) VALUES ('post_tag', 32, '')
10047
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10048
+ Wordpress::Term Load (0.1ms) SELECT `wp_terms`.* FROM `wp_terms` WHERE `wp_terms`.`term_id` = 32 LIMIT 1
10049
+  (0.3ms) ROLLBACK
10050
+  (0.1ms) BEGIN
10051
+  (0.1ms) COMMIT
10052
+  (0.1ms) BEGIN
10053
+  (0.1ms) SAVEPOINT active_record_1
10054
+ Wordpress::Term Exists (0.1ms) SELECT 1 AS one FROM `wp_terms` WHERE `wp_terms`.`slug` = BINARY '' LIMIT 1
10055
+ SQL (0.1ms) INSERT INTO `wp_terms` (`name`, `slug`) VALUES ('Hello Again', 'hello-again')
10056
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10057
+  (0.1ms) SAVEPOINT active_record_1
10058
+ SQL (0.1ms) INSERT INTO `wp_term_taxonomy` (`taxonomy`, `description`, `term_id`) VALUES ('post_tag', 'Describes Hello Again', 33)
10059
+  (0.1ms) RELEASE SAVEPOINT active_record_1
10060
+ Wordpress::PostTag Load (0.2ms) SELECT `wp_term_taxonomy`.* FROM `wp_term_taxonomy` INNER JOIN `wp_terms` ON `wp_terms`.`term_id` = `wp_term_taxonomy`.`term_id` WHERE `wp_term_taxonomy`.`taxonomy` IN ('post_tag') AND `wp_terms`.`name` = 'Hello Again' ORDER BY `wp_term_taxonomy`.`term_taxonomy_id` ASC LIMIT 1
10061
+  (0.3ms) ROLLBACK