(31.6ms)  DROP DATABASE IF EXISTS "active_reporter_test"
   (113.1ms)  CREATE DATABASE "active_reporter_test" ENCODING = 'utf8'
  SQL (2.3ms)  CREATE EXTENSION IF NOT EXISTS "plpgsql"
   (0.6ms)  DROP TABLE IF EXISTS "authors" CASCADE
   (13.0ms)  CREATE TABLE "authors" ("id" bigserial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying)
   (0.3ms)  DROP TABLE IF EXISTS "comments" CASCADE
   (2.8ms)  CREATE TABLE "comments" ("id" bigserial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "post_id" integer, "author_id" integer, "likes" integer DEFAULT 0 NOT NULL)
   (0.2ms)  DROP TABLE IF EXISTS "posts" CASCADE
   (4.6ms)  CREATE TABLE "posts" ("id" bigserial primary key, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "title" character varying, "author_id" integer, "status" integer DEFAULT 0 NOT NULL, "likes" integer DEFAULT 0 NOT NULL, "category" integer, "published_at" timestamp)
   (4.3ms)  CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
   (0.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
   (0.6ms)  INSERT INTO "schema_migrations" (version) VALUES (20150714202319)
   (2.8ms)  CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
  ActiveRecord::InternalMetadata Load (0.3ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
   (0.1ms)  BEGIN
  ActiveRecord::InternalMetadata Create (0.5ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"  [["key", "environment"], ["value", "test"], ["created_at", "2021-05-10 15:55:04.520000"], ["updated_at", "2021-05-10 15:55:04.520000"]]
   (0.3ms)  COMMIT
  ActiveRecord::InternalMetadata Load (0.2ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
  ActiveRecord::InternalMetadata Load (0.2ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "schema_sha1"], ["LIMIT", 1]]
   (0.1ms)  BEGIN
  ActiveRecord::InternalMetadata Create (0.2ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"  [["key", "schema_sha1"], ["value", "d95cd5d1c1174b3be343732fb6c2992cfde51109"], ["created_at", "2021-05-10 15:55:04.523639"], ["updated_at", "2021-05-10 15:55:04.523639"]]
   (0.2ms)  COMMIT
   (0.8ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
   (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
   (0.2ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.7ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.111158"], ["updated_at", "2021-05-10 15:55:05.111158"], ["name", "James Joyce"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.5ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.133043"], ["updated_at", "2021-05-10 15:55:05.133043"], ["author_id", 1], ["status", 2], ["likes", 1], ["published_at", "2015-10-01 00:00:00"]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.135672"], ["updated_at", "2021-05-10 15:55:05.135672"], ["author_id", 1], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.137736"], ["updated_at", "2021-05-10 15:55:05.137736"], ["author_id", 1], ["status", 2], ["likes", 1], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.139824"], ["updated_at", "2021-05-10 15:55:05.139824"], ["author_id", 1], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.141559"], ["updated_at", "2021-05-10 15:55:05.141559"], ["name", "Virginia Woolf"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.143484"], ["updated_at", "2021-05-10 15:55:05.143484"], ["author_id", 2], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.145638"], ["updated_at", "2021-05-10 15:55:05.145638"], ["author_id", 2], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.147462"], ["updated_at", "2021-05-10 15:55:05.147462"], ["author_id", 2], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SAVEPOINT active_record_1
  Post Create (0.4ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.149292"], ["updated_at", "2021-05-10 15:55:05.149292"], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.151608"], ["updated_at", "2021-05-10 15:55:05.151608"], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (1.5ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.4ms)  SELECT MIN(posts.published_at) FROM "posts"
   (0.4ms)  SELECT MAX(posts.published_at) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.published_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (1.5ms)  SELECT _active_reporter_dimension_published_at_bin_table.bin_text AS _active_reporter_dimension_published_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" INNER JOIN (
  SELECT CAST(NULL AS timestamp with time zone) AS min, CAST(NULL AS timestamp with time zone) AS max, CAST(',' AS text) AS bin_text UNION
  SELECT CAST('2015-10-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-10-01 00:00:00 UTC,2015-11-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-12-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-11-01 00:00:00 UTC,2015-12-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_published_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL AND _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at IS NULL)
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL THEN (posts.published_at < _active_reporter_dimension_published_at_bin_table.max)
  WHEN _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at >= _active_reporter_dimension_published_at_bin_table.min)
  ELSE ((posts.published_at >= _active_reporter_dimension_published_at_bin_table.min) AND (posts.published_at < _active_reporter_dimension_published_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_published_at
   (0.3ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.3ms)  SELECT MAX(posts.likes) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.likes IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (1.4ms)  SELECT _active_reporter_dimension_likes_bin_table.bin_text AS _active_reporter_dimension_likes, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" INNER JOIN (
  SELECT 1.0 AS min, 2.0 AS max, CAST('1.0,2.0' AS text) AS bin_text UNION
  SELECT 2.0 AS min, 3.0 AS max, CAST('2.0,3.0' AS text) AS bin_text UNION
  SELECT 3.0 AS min, 4.0 AS max, CAST('3.0,4.0' AS text) AS bin_text
) AS _active_reporter_dimension_likes_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL AND _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes IS NULL)
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL THEN (posts.likes < _active_reporter_dimension_likes_bin_table.max)
  WHEN _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes >= _active_reporter_dimension_likes_bin_table.min)
  ELSE ((posts.likes >= _active_reporter_dimension_likes_bin_table.min) AND (posts.likes < _active_reporter_dimension_likes_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_likes
   (0.3ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.205174"], ["updated_at", "2021-05-10 15:55:05.205174"], ["name", "James Joyce"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.212969"], ["updated_at", "2021-05-10 15:55:05.212969"], ["author_id", 3], ["status", 2], ["likes", 1], ["published_at", "2015-10-01 00:00:00"]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.215524"], ["updated_at", "2021-05-10 15:55:05.215524"], ["author_id", 3], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.217792"], ["updated_at", "2021-05-10 15:55:05.217792"], ["author_id", 3], ["status", 2], ["likes", 1], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.220366"], ["updated_at", "2021-05-10 15:55:05.220366"], ["author_id", 3], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.222368"], ["updated_at", "2021-05-10 15:55:05.222368"], ["name", "Virginia Woolf"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.224490"], ["updated_at", "2021-05-10 15:55:05.224490"], ["author_id", 4], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.226679"], ["updated_at", "2021-05-10 15:55:05.226679"], ["author_id", 4], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.228774"], ["updated_at", "2021-05-10 15:55:05.228774"], ["author_id", 4], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.230699"], ["updated_at", "2021-05-10 15:55:05.230699"], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.232246"], ["updated_at", "2021-05-10 15:55:05.232246"], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MIN(posts.published_at) FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id"
   (0.3ms)  SELECT MAX(posts.published_at) FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.published_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.9ms)  SELECT _active_reporter_dimension_published_at_bin_table.bin_text AS _active_reporter_dimension_published_at, authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST(NULL AS timestamp with time zone) AS min, CAST(NULL AS timestamp with time zone) AS max, CAST(',' AS text) AS bin_text UNION
  SELECT CAST('2015-10-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-10-01 00:00:00 UTC,2015-11-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-12-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-11-01 00:00:00 UTC,2015-12-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_published_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL AND _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at IS NULL)
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL THEN (posts.published_at < _active_reporter_dimension_published_at_bin_table.max)
  WHEN _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at >= _active_reporter_dimension_published_at_bin_table.min)
  ELSE ((posts.published_at >= _active_reporter_dimension_published_at_bin_table.min) AND (posts.published_at < _active_reporter_dimension_published_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_published_at, _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.252315"], ["updated_at", "2021-05-10 15:55:05.252315"], ["name", "James Joyce"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.254809"], ["updated_at", "2021-05-10 15:55:05.254809"], ["author_id", 5], ["status", 2], ["likes", 1], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.257012"], ["updated_at", "2021-05-10 15:55:05.257012"], ["author_id", 5], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.259552"], ["updated_at", "2021-05-10 15:55:05.259552"], ["author_id", 5], ["status", 2], ["likes", 1], ["published_at", "2015-11-01 00:00:00"]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.4ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.4ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.263701"], ["updated_at", "2021-05-10 15:55:05.263701"], ["author_id", 5], ["status", 2], ["likes", 3]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
   (0.2ms)  SAVEPOINT active_record_1
  Author Create (0.4ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.266968"], ["updated_at", "2021-05-10 15:55:05.266968"], ["name", "Virginia Woolf"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.271260"], ["updated_at", "2021-05-10 15:55:05.271260"], ["author_id", 6], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.275664"], ["updated_at", "2021-05-10 15:55:05.275664"], ["author_id", 6], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.278813"], ["updated_at", "2021-05-10 15:55:05.278813"], ["author_id", 6], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.281543"], ["updated_at", "2021-05-10 15:55:05.281543"], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.284478"], ["updated_at", "2021-05-10 15:55:05.284478"], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.6ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author DESC NULLS LAST
   (0.5ms)  SELECT MIN(posts.published_at) FROM "posts"
   (0.4ms)  SELECT MAX(posts.published_at) FROM "posts"
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" WHERE (posts.published_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.8ms)  SELECT _active_reporter_dimension_published_at_bin_table.bin_text AS _active_reporter_dimension_published_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" INNER JOIN (
  SELECT CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-12-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-11-01 00:00:00 UTC,2015-12-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2015-10-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-10-01 00:00:00 UTC,2015-11-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST(NULL AS timestamp with time zone) AS min, CAST(NULL AS timestamp with time zone) AS max, CAST(',' AS text) AS bin_text
) AS _active_reporter_dimension_published_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL AND _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at IS NULL)
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL THEN (posts.published_at < _active_reporter_dimension_published_at_bin_table.max)
  WHEN _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at >= _active_reporter_dimension_published_at_bin_table.min)
  ELSE ((posts.published_at >= _active_reporter_dimension_published_at_bin_table.min) AND (posts.published_at < _active_reporter_dimension_published_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_published_at
  Post Load (0.7ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS LAST
  Post Load (1.0ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author DESC NULLS FIRST
   (0.4ms)  SELECT MIN(posts.published_at) FROM "posts"
   (0.3ms)  SELECT MAX(posts.published_at) FROM "posts"
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" WHERE (posts.published_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.9ms)  SELECT _active_reporter_dimension_published_at_bin_table.bin_text AS _active_reporter_dimension_published_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" INNER JOIN (
  SELECT CAST('2015-10-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-10-01 00:00:00 UTC,2015-11-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-12-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-11-01 00:00:00 UTC,2015-12-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST(NULL AS timestamp with time zone) AS min, CAST(NULL AS timestamp with time zone) AS max, CAST(',' AS text) AS bin_text
) AS _active_reporter_dimension_published_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL AND _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at IS NULL)
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL THEN (posts.published_at < _active_reporter_dimension_published_at_bin_table.max)
  WHEN _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at >= _active_reporter_dimension_published_at_bin_table.min)
  ELSE ((posts.published_at >= _active_reporter_dimension_published_at_bin_table.min) AND (posts.published_at < _active_reporter_dimension_published_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_published_at
   (0.5ms)  SELECT MIN(posts.published_at) FROM "posts"
   (0.3ms)  SELECT MAX(posts.published_at) FROM "posts"
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" WHERE (posts.published_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.8ms)  SELECT _active_reporter_dimension_published_at_bin_table.bin_text AS _active_reporter_dimension_published_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" INNER JOIN (
  SELECT CAST(NULL AS timestamp with time zone) AS min, CAST(NULL AS timestamp with time zone) AS max, CAST(',' AS text) AS bin_text UNION
  SELECT CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-12-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-11-01 00:00:00 UTC,2015-12-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2015-10-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-10-01 00:00:00 UTC,2015-11-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_published_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL AND _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at IS NULL)
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL THEN (posts.published_at < _active_reporter_dimension_published_at_bin_table.max)
  WHEN _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at >= _active_reporter_dimension_published_at_bin_table.min)
  ELSE ((posts.published_at >= _active_reporter_dimension_published_at_bin_table.min) AND (posts.published_at < _active_reporter_dimension_published_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_published_at
   (0.3ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.367930"], ["updated_at", "2021-05-10 15:55:05.367930"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.369392"], ["updated_at", "2021-05-10 15:55:05.369392"], ["author_id", 7], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.371876"], ["updated_at", "2021-05-10 15:55:05.371876"], ["author_id", 7], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.374335"], ["updated_at", "2021-05-10 15:55:05.374335"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.375705"], ["updated_at", "2021-05-10 15:55:05.375705"], ["author_id", 8], ["status", 2], ["likes", 4]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.4ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.378089"], ["updated_at", "2021-05-10 15:55:05.378089"], ["author_id", 8], ["status", 2], ["likes", 1]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.3ms)  SAVEPOINT active_record_1
  Post Create (0.4ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.381014"], ["updated_at", "2021-05-10 15:55:05.381014"], ["author_id", 8], ["status", 2], ["likes", 5]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.384688"], ["updated_at", "2021-05-10 15:55:05.384688"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.386153"], ["updated_at", "2021-05-10 15:55:05.386153"], ["author_id", 9], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.7ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, ARRAY_AGG(posts.id) AS _report_aggregator_post_ids FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.392022"], ["updated_at", "2021-05-10 15:55:05.392022"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.393377"], ["updated_at", "2021-05-10 15:55:05.393377"], ["author_id", 10], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.395844"], ["updated_at", "2021-05-10 15:55:05.395844"], ["author_id", 10], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.398130"], ["updated_at", "2021-05-10 15:55:05.398130"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.399357"], ["updated_at", "2021-05-10 15:55:05.399357"], ["author_id", 11], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.401551"], ["updated_at", "2021-05-10 15:55:05.401551"], ["author_id", 11], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.403621"], ["updated_at", "2021-05-10 15:55:05.403621"], ["author_id", 11], ["status", 2], ["likes", 5]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.405871"], ["updated_at", "2021-05-10 15:55:05.405871"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.407145"], ["updated_at", "2021-05-10 15:55:05.407145"], ["author_id", 12], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.5ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.412516"], ["updated_at", "2021-05-10 15:55:05.412516"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.414058"], ["updated_at", "2021-05-10 15:55:05.414058"], ["author_id", 13], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.416326"], ["updated_at", "2021-05-10 15:55:05.416326"], ["author_id", 13], ["status", 2], ["likes", 2]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.418415"], ["updated_at", "2021-05-10 15:55:05.418415"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.419590"], ["updated_at", "2021-05-10 15:55:05.419590"], ["author_id", 14], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.421605"], ["updated_at", "2021-05-10 15:55:05.421605"], ["author_id", 14], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.423605"], ["updated_at", "2021-05-10 15:55:05.423605"], ["author_id", 14], ["status", 2], ["likes", 5]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.425589"], ["updated_at", "2021-05-10 15:55:05.425589"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.426780"], ["updated_at", "2021-05-10 15:55:05.426780"], ["author_id", 15], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.5ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, MIN(posts.likes) AS _report_aggregator_min_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.431507"], ["updated_at", "2021-05-10 15:55:05.431507"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.432632"], ["updated_at", "2021-05-10 15:55:05.432632"], ["author_id", 16], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.434413"], ["updated_at", "2021-05-10 15:55:05.434413"], ["author_id", 16], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.436187"], ["updated_at", "2021-05-10 15:55:05.436187"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.437198"], ["updated_at", "2021-05-10 15:55:05.437198"], ["author_id", 17], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.438852"], ["updated_at", "2021-05-10 15:55:05.438852"], ["author_id", 17], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.440534"], ["updated_at", "2021-05-10 15:55:05.440534"], ["author_id", 17], ["status", 2], ["likes", 5]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.442200"], ["updated_at", "2021-05-10 15:55:05.442200"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.443188"], ["updated_at", "2021-05-10 15:55:05.443188"], ["author_id", 18], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, AVG(posts.likes) AS _report_aggregator_mean_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.447117"], ["updated_at", "2021-05-10 15:55:05.447117"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.448105"], ["updated_at", "2021-05-10 15:55:05.448105"], ["author_id", 19], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.3ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.449705"], ["updated_at", "2021-05-10 15:55:05.449705"], ["author_id", 19], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.452683"], ["updated_at", "2021-05-10 15:55:05.452683"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.453805"], ["updated_at", "2021-05-10 15:55:05.453805"], ["author_id", 20], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.455561"], ["updated_at", "2021-05-10 15:55:05.455561"], ["author_id", 20], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.457279"], ["updated_at", "2021-05-10 15:55:05.457279"], ["author_id", 20], ["status", 2], ["likes", 5]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.459042"], ["updated_at", "2021-05-10 15:55:05.459042"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.459981"], ["updated_at", "2021-05-10 15:55:05.459981"], ["author_id", 21], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, SUM(posts.likes) AS _report_aggregator_total_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.464740"], ["updated_at", "2021-05-10 15:55:05.464740"], ["name", "Alice"]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.466371"], ["updated_at", "2021-05-10 15:55:05.466371"], ["author_id", 22], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.4ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.469093"], ["updated_at", "2021-05-10 15:55:05.469093"], ["author_id", 22], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.3ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.471874"], ["updated_at", "2021-05-10 15:55:05.471874"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.472900"], ["updated_at", "2021-05-10 15:55:05.472900"], ["author_id", 23], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.474627"], ["updated_at", "2021-05-10 15:55:05.474627"], ["author_id", 23], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.476328"], ["updated_at", "2021-05-10 15:55:05.476328"], ["author_id", 23], ["status", 2], ["likes", 5]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.478103"], ["updated_at", "2021-05-10 15:55:05.478103"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.479153"], ["updated_at", "2021-05-10 15:55:05.479153"], ["author_id", 24], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, COUNT(DISTINCT posts.id) AS _report_aggregator_count FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.3ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.3ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.2ms)  SELECT MAX(posts.likes) FROM "posts"
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.506524"], ["updated_at", "2021-05-10 15:55:05.506524"], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.507966"], ["updated_at", "2021-05-10 15:55:05.507966"], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.509217"], ["updated_at", "2021-05-10 15:55:05.509217"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.3ms)  SELECT MAX(posts.likes) FROM "posts"
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.522219"], ["updated_at", "2021-05-10 15:55:05.522219"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.2ms)  SELECT MAX(posts.likes) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.likes IS NULL) LIMIT $1  [["LIMIT", 1]]
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.526956"], ["updated_at", "2021-05-10 15:55:05.526956"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.527937"], ["updated_at", "2021-05-10 15:55:05.527937"], ["author_id", 25], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.529596"], ["updated_at", "2021-05-10 15:55:05.529596"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.530639"], ["updated_at", "2021-05-10 15:55:05.530639"], ["author_id", 26], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.531784"], ["updated_at", "2021-05-10 15:55:05.531784"], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT "posts".* FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id WHERE (authors.name IN ('Alice'))
  Post Load (0.4ms)  SELECT "posts".* FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id WHERE (authors.name IS NULL OR authors.name IN (NULL))
  Post Load (0.3ms)  SELECT "posts".* FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id WHERE (authors.name IS NULL OR authors.name IN ('Alice'))
  Post Load (0.4ms)  SELECT "posts".* FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id WHERE (authors.name IN ('Alice','Bob'))
  Post Load (0.2ms)  SELECT "posts".* FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id WHERE (authors.name IN (NULL))
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.538479"], ["updated_at", "2021-05-10 15:55:05.538479"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.539600"], ["updated_at", "2021-05-10 15:55:05.539600"], ["author_id", 27], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.541379"], ["updated_at", "2021-05-10 15:55:05.541379"], ["author_id", 27], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.542620"], ["updated_at", "2021-05-10 15:55:05.542620"], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.544324"], ["updated_at", "2021-05-10 15:55:05.544324"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.545410"], ["updated_at", "2021-05-10 15:55:05.545410"], ["author_id", 28], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.547245"], ["updated_at", "2021-05-10 15:55:05.547245"], ["author_id", 28], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.548972"], ["updated_at", "2021-05-10 15:55:05.548972"], ["author_id", 28], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.5ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(*) AS count FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.582959"], ["updated_at", "2021-05-10 15:55:05.582959"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2019-12-18 00:00:00"], ["updated_at", "2021-05-10 15:55:05.584042"], ["author_id", 29], ["status", 2], ["likes", 23]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.585789"], ["author_id", 29], ["status", 2], ["likes", 7]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 15:55:05.587429"], ["author_id", 29], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-08 00:00:00"], ["updated_at", "2021-05-10 15:55:05.589212"], ["author_id", 29], ["status", 2], ["likes", 11]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.591016"], ["updated_at", "2021-05-10 15:55:05.591016"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 15:55:05.592024"], ["author_id", 30], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-02-27 00:00:00"], ["updated_at", "2021-05-10 15:55:05.593636"], ["author_id", 30], ["status", 2], ["likes", 24]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-02-28 00:00:00"], ["updated_at", "2021-05-10 15:55:05.595302"], ["author_id", 30], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.597016"], ["author_id", 30], ["status", 2], ["likes", 19]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-04-08 00:00:00"], ["updated_at", "2021-05-10 15:55:05.598639"], ["author_id", 30], ["status", 2], ["likes", 8]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.4ms)  SELECT MAX(posts.created_at) FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00')
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.7ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-01-01 00:00:00 UTC,2020-02-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-02-01 00:00:00 UTC,2020-03-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-03-01 00:00:00 UTC,2020-04-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-05-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-04-01 00:00:00 UTC,2020-05-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.4ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.4ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.610023"], ["updated_at", "2021-05-10 15:55:05.610023"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2019-12-18 00:00:00"], ["updated_at", "2021-05-10 15:55:05.611628"], ["author_id", 31], ["status", 2], ["likes", 23]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.613611"], ["author_id", 31], ["status", 2], ["likes", 7]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 15:55:05.615499"], ["author_id", 31], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-08 00:00:00"], ["updated_at", "2021-05-10 15:55:05.617392"], ["author_id", 31], ["status", 2], ["likes", 11]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.619412"], ["updated_at", "2021-05-10 15:55:05.619412"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 15:55:05.620680"], ["author_id", 32], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-02-27 00:00:00"], ["updated_at", "2021-05-10 15:55:05.622658"], ["author_id", 32], ["status", 2], ["likes", 24]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-02-28 00:00:00"], ["updated_at", "2021-05-10 15:55:05.624594"], ["author_id", 32], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.626492"], ["author_id", 32], ["status", 2], ["likes", 19]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-04-08 00:00:00"], ["updated_at", "2021-05-10 15:55:05.628433"], ["author_id", 32], ["status", 2], ["likes", 8]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.4ms)  SELECT MAX(posts.created_at) FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00')
  Post Exists? (0.4ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.9ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-01-01 00:00:00 UTC,2020-02-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-02-01 00:00:00 UTC,2020-03-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-03-01 00:00:00 UTC,2020-04-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-05-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-04-01 00:00:00 UTC,2020-05-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.643604"], ["updated_at", "2021-05-10 15:55:05.643604"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2019-12-18 00:00:00"], ["updated_at", "2021-05-10 15:55:05.645018"], ["author_id", 33], ["status", 2], ["likes", 23]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.647231"], ["author_id", 33], ["status", 2], ["likes", 7]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 15:55:05.649417"], ["author_id", 33], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-08 00:00:00"], ["updated_at", "2021-05-10 15:55:05.651475"], ["author_id", 33], ["status", 2], ["likes", 11]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.653445"], ["updated_at", "2021-05-10 15:55:05.653445"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 15:55:05.654536"], ["author_id", 34], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-02-27 00:00:00"], ["updated_at", "2021-05-10 15:55:05.656380"], ["author_id", 34], ["status", 2], ["likes", 24]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-02-28 00:00:00"], ["updated_at", "2021-05-10 15:55:05.658137"], ["author_id", 34], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.659900"], ["author_id", 34], ["status", 2], ["likes", 19]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-04-08 00:00:00"], ["updated_at", "2021-05-10 15:55:05.661711"], ["author_id", 34], ["status", 2], ["likes", 8]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MAX(posts.created_at) FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00')
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.8ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-01-01 00:00:00 UTC,2020-02-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-02-01 00:00:00 UTC,2020-03-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-03-01 00:00:00 UTC,2020-04-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-05-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-04-01 00:00:00 UTC,2020-05-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.674137"], ["updated_at", "2021-05-10 15:55:05.674137"], ["name", "Tammy"]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2019-12-18 00:00:00"], ["updated_at", "2021-05-10 15:55:05.675829"], ["author_id", 35], ["status", 2], ["likes", 23]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.678239"], ["author_id", 35], ["status", 2], ["likes", 7]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 15:55:05.680087"], ["author_id", 35], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.5ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-08 00:00:00"], ["updated_at", "2021-05-10 15:55:05.681947"], ["author_id", 35], ["status", 2], ["likes", 11]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.684116"], ["updated_at", "2021-05-10 15:55:05.684116"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 15:55:05.685308"], ["author_id", 36], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-02-27 00:00:00"], ["updated_at", "2021-05-10 15:55:05.687200"], ["author_id", 36], ["status", 2], ["likes", 24]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-02-28 00:00:00"], ["updated_at", "2021-05-10 15:55:05.689005"], ["author_id", 36], ["status", 2]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.690812"], ["author_id", 36], ["status", 2], ["likes", 19]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-04-08 00:00:00"], ["updated_at", "2021-05-10 15:55:05.692467"], ["author_id", 36], ["status", 2], ["likes", 8]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.4ms)  SELECT MAX(posts.created_at) FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00')
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.7ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-01-01 00:00:00 UTC,2020-02-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-02-01 00:00:00 UTC,2020-03-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-03-01 00:00:00 UTC,2020-04-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-05-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-04-01 00:00:00 UTC,2020-05-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.3ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.714388"], ["updated_at", "2021-05-10 15:55:05.714388"], ["name", "Tammy"]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.4ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2019-12-18 00:00:00"], ["updated_at", "2021-05-10 15:55:05.716068"], ["author_id", 37], ["status", 2], ["likes", 23]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.718640"], ["author_id", 37], ["status", 2], ["likes", 7]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 15:55:05.720944"], ["author_id", 37], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-08 00:00:00"], ["updated_at", "2021-05-10 15:55:05.723150"], ["author_id", 37], ["status", 2], ["likes", 11]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.725288"], ["updated_at", "2021-05-10 15:55:05.725288"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 15:55:05.726479"], ["author_id", 38], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.4ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-02-27 00:00:00"], ["updated_at", "2021-05-10 15:55:05.728640"], ["author_id", 38], ["status", 2], ["likes", 24]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-02-28 00:00:00"], ["updated_at", "2021-05-10 15:55:05.732133"], ["author_id", 38], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.734642"], ["author_id", 38], ["status", 2], ["likes", 19]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-04-08 00:00:00"], ["updated_at", "2021-05-10 15:55:05.736877"], ["author_id", 38], ["status", 2], ["likes", 8]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.4ms)  SELECT MAX(posts.created_at) FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00')
  Post Exists? (0.4ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Exists? (0.5ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE ((posts.created_at >= '2019-12-01 00:00:00' AND posts.created_at < '2020-01-01 00:00:00')) AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.7ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2019-12-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS max, CAST('2019-12-01 00:00:00 UTC,2020-01-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE ((posts.created_at >= '2019-12-01 00:00:00' AND posts.created_at < '2020-01-01 00:00:00')) GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST LIMIT $1  [["LIMIT", 1]]
  Post Load (0.6ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2019-12-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS max, CAST('2019-12-01 00:00:00 UTC,2020-01-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE ((posts.created_at >= '2019-12-01 00:00:00' AND posts.created_at < '2020-01-01 00:00:00')) GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
  Post Load (1.1ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-01-01 00:00:00 UTC,2020-02-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-02-01 00:00:00 UTC,2020-03-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-03-01 00:00:00 UTC,2020-04-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-05-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-04-01 00:00:00 UTC,2020-05-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.3ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.2ms)  ROLLBACK
   (0.2ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.766901"], ["updated_at", "2021-05-10 15:55:05.766901"], ["name", "Phil"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.768257"], ["author_id", 39], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.770559"], ["author_id", 39], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phyllis"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.772529"], ["updated_at", "2021-05-10 15:55:05.772529"], ["name", "Phyllis"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.773660"], ["author_id", 40], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phyllis"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.775498"], ["author_id", 40], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.2ms)  SELECT "posts".* FROM "posts"
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.779742"], ["updated_at", "2021-05-10 15:55:05.779742"], ["name", "Phil"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.780990"], ["author_id", 41], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.783040"], ["author_id", 41], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phyllis"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Author Create (0.5ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.785143"], ["updated_at", "2021-05-10 15:55:05.785143"], ["name", "Phyllis"]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.787223"], ["author_id", 42], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phyllis"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.789825"], ["author_id", 42], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.2ms)  SELECT "posts".* FROM "posts"
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.794656"], ["updated_at", "2021-05-10 15:55:05.794656"], ["name", "Phil"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.795960"], ["author_id", 43], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.798042"], ["author_id", 43], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.5ms)  SELECT "posts".* FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (authors.name IN ('Phil'))
   (0.2ms)  ROLLBACK
   (0.2ms)  BEGIN
  Post Exists? (0.4ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (authors.name IN ('')) LIMIT $1  [["LIMIT", 1]]
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (authors.name IS NULL OR authors.name IN (NULL)) LIMIT $1  [["LIMIT", 1]]
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.2ms)  ROLLBACK
   (0.2ms)  BEGIN
   (0.2ms)  ROLLBACK
   (0.2ms)  BEGIN
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.822594"], ["updated_at", "2021-05-10 15:55:05.822594"], ["name", "Timmy"]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.824233"], ["author_id", 44], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 15:55:05.826645"], ["author_id", 44], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.828779"], ["updated_at", "2021-05-10 15:55:05.828779"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 15:55:05.830103"], ["author_id", 45], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.832404"], ["author_id", 45], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-15 00:00:00"], ["updated_at", "2021-05-10 15:55:05.834642"], ["author_id", 45], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.3ms)  SELECT 'totals' AS _active_reporter_dimension_totals, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" GROUP BY _active_reporter_dimension_totals ORDER BY _active_reporter_dimension_totals ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.839941"], ["updated_at", "2021-05-10 15:55:05.839941"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.841166"], ["author_id", 46], ["status", 2], ["likes", 1]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.3ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 15:55:05.844175"], ["author_id", 46], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 15:55:05.846671"], ["updated_at", "2021-05-10 15:55:05.846671"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 15:55:05.847848"], ["author_id", 47], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.849899"], ["author_id", 47], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-15 00:00:00"], ["updated_at", "2021-05-10 15:55:05.851938"], ["author_id", 47], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.5ms)  SELECT 'totals' AS _active_reporter_dimension_totals, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (authors.name IN ('Tammy')) GROUP BY _active_reporter_dimension_totals ORDER BY _active_reporter_dimension_totals ASC NULLS FIRST
  Post Load (0.3ms)  SELECT 'totals' AS _active_reporter_dimension_totals, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" GROUP BY _active_reporter_dimension_totals ORDER BY _active_reporter_dimension_totals ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.858648"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.860510"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.862245"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 15:55:05.864090"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MIN(posts.created_at) FROM "posts"
   (0.4ms)  SELECT MAX(posts.created_at) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.7ms)  SELECT posts.title AS _active_reporter_dimension_title, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_post_count, SUM(posts.likes) AS _report_aggregator_likes_count FROM "posts" INNER JOIN (
  SELECT CAST('2016-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-01 00:00:00 UTC,2016-01-02 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-03 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-02 00:00:00 UTC,2016-01-03 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_title, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_title ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.874646"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.876332"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.877901"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 15:55:05.879654"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT posts.title AS _active_reporter_dimension_title, COUNT(DISTINCT posts.id) AS _report_aggregator_post_count FROM "posts" GROUP BY _active_reporter_dimension_title ORDER BY _active_reporter_dimension_title ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.883835"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.885963"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.887542"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 15:55:05.889033"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.3ms)  SELECT MAX(posts.likes) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.likes IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.6ms)  SELECT posts.title AS _active_reporter_dimension_title, _active_reporter_dimension_likes_bin_table.bin_text AS _active_reporter_dimension_likes, COUNT(DISTINCT posts.id) AS _report_aggregator_post_count FROM "posts" INNER JOIN (
  SELECT 1.0 AS min, 2.0 AS max, CAST('1.0,2.0' AS text) AS bin_text UNION
  SELECT 2.0 AS min, 3.0 AS max, CAST('2.0,3.0' AS text) AS bin_text
) AS _active_reporter_dimension_likes_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL AND _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes IS NULL)
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL THEN (posts.likes < _active_reporter_dimension_likes_bin_table.max)
  WHEN _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes >= _active_reporter_dimension_likes_bin_table.min)
  ELSE ((posts.likes >= _active_reporter_dimension_likes_bin_table.min) AND (posts.likes < _active_reporter_dimension_likes_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_title, _active_reporter_dimension_likes ORDER BY _active_reporter_dimension_title ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.896255"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.897965"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.899521"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 15:55:05.900981"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MIN(posts.created_at) FROM "posts"
   (0.2ms)  SELECT MAX(posts.created_at) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
   (0.2ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.2ms)  SELECT MAX(posts.likes) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.likes IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.8ms)  SELECT posts.title AS _active_reporter_dimension_title, _active_reporter_dimension_likes_bin_table.bin_text AS _active_reporter_dimension_likes, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_post_count FROM "posts" INNER JOIN (
  SELECT 1.0 AS min, 2.0 AS max, CAST('1.0,2.0' AS text) AS bin_text UNION
  SELECT 2.0 AS min, 3.0 AS max, CAST('2.0,3.0' AS text) AS bin_text
) AS _active_reporter_dimension_likes_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL AND _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes IS NULL)
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL THEN (posts.likes < _active_reporter_dimension_likes_bin_table.max)
  WHEN _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes >= _active_reporter_dimension_likes_bin_table.min)
  ELSE ((posts.likes >= _active_reporter_dimension_likes_bin_table.min) AND (posts.likes < _active_reporter_dimension_likes_bin_table.max))
  END
) INNER JOIN (
  SELECT CAST('2016-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-01 00:00:00 UTC,2016-01-02 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-03 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-02 00:00:00 UTC,2016-01-03 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_title, _active_reporter_dimension_likes, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_title ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.970189"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.971742"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.973139"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 15:55:05.974588"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.977473"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.979032"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.980507"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 15:55:05.981890"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.2ms)  SELECT COUNT(*) FROM "posts"
   (0.2ms)  SELECT COUNT(*) FROM "posts"
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.985614"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.987025"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 15:55:05.988303"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SAVEPOINT active_record_1
  Post Create (0.4ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 15:55:05.989541"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MIN(posts.created_at) FROM "posts"
   (0.3ms)  SELECT MAX(posts.created_at) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
   (0.3ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.2ms)  SELECT MAX(posts.likes) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.likes IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.8ms)  SELECT _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, _active_reporter_dimension_likes_bin_table.bin_text AS _active_reporter_dimension_likes, posts.title AS _active_reporter_dimension_title, COUNT(DISTINCT posts.id) AS _report_aggregator_post_count FROM "posts" INNER JOIN (
  SELECT CAST('2016-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-01 00:00:00 UTC,2016-01-02 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-03 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-02 00:00:00 UTC,2016-01-03 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) INNER JOIN (
  SELECT 1.0 AS min, 2.0 AS max, CAST('1.0,2.0' AS text) AS bin_text UNION
  SELECT 2.0 AS min, 3.0 AS max, CAST('2.0,3.0' AS text) AS bin_text
) AS _active_reporter_dimension_likes_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL AND _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes IS NULL)
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL THEN (posts.likes < _active_reporter_dimension_likes_bin_table.max)
  WHEN _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes >= _active_reporter_dimension_likes_bin_table.min)
  ELSE ((posts.likes >= _active_reporter_dimension_likes_bin_table.min) AND (posts.likes < _active_reporter_dimension_likes_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_created_at, _active_reporter_dimension_likes, _active_reporter_dimension_title ORDER BY _active_reporter_dimension_title ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1  [["key", "schema_sha1"]]
   (0.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
   (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
   (0.2ms)  BEGIN
   (0.2ms)  SAVEPOINT active_record_1
  Author Create (0.7ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:04.981401"], ["updated_at", "2021-05-10 16:03:04.981401"], ["name", "James Joyce"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.3ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.6ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.001618"], ["updated_at", "2021-05-10 16:03:05.001618"], ["author_id", 48], ["status", 2], ["likes", 1], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.3ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.005073"], ["updated_at", "2021-05-10 16:03:05.005073"], ["author_id", 48], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.007421"], ["updated_at", "2021-05-10 16:03:05.007421"], ["author_id", 48], ["status", 2], ["likes", 1], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.009529"], ["updated_at", "2021-05-10 16:03:05.009529"], ["author_id", 48], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.011400"], ["updated_at", "2021-05-10 16:03:05.011400"], ["name", "Virginia Woolf"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.013425"], ["updated_at", "2021-05-10 16:03:05.013425"], ["author_id", 49], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.015711"], ["updated_at", "2021-05-10 16:03:05.015711"], ["author_id", 49], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.017824"], ["updated_at", "2021-05-10 16:03:05.017824"], ["author_id", 49], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.019587"], ["updated_at", "2021-05-10 16:03:05.019587"], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.021095"], ["updated_at", "2021-05-10 16:03:05.021095"], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (1.3ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.4ms)  SELECT MIN(posts.published_at) FROM "posts"
   (0.3ms)  SELECT MAX(posts.published_at) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.published_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (1.1ms)  SELECT _active_reporter_dimension_published_at_bin_table.bin_text AS _active_reporter_dimension_published_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" INNER JOIN (
  SELECT CAST(NULL AS timestamp with time zone) AS min, CAST(NULL AS timestamp with time zone) AS max, CAST(',' AS text) AS bin_text UNION
  SELECT CAST('2015-10-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-10-01 00:00:00 UTC,2015-11-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-12-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-11-01 00:00:00 UTC,2015-12-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_published_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL AND _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at IS NULL)
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL THEN (posts.published_at < _active_reporter_dimension_published_at_bin_table.max)
  WHEN _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at >= _active_reporter_dimension_published_at_bin_table.min)
  ELSE ((posts.published_at >= _active_reporter_dimension_published_at_bin_table.min) AND (posts.published_at < _active_reporter_dimension_published_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_published_at
   (0.5ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.3ms)  SELECT MAX(posts.likes) FROM "posts"
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" WHERE (posts.likes IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (1.3ms)  SELECT _active_reporter_dimension_likes_bin_table.bin_text AS _active_reporter_dimension_likes, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" INNER JOIN (
  SELECT 1.0 AS min, 2.0 AS max, CAST('1.0,2.0' AS text) AS bin_text UNION
  SELECT 2.0 AS min, 3.0 AS max, CAST('2.0,3.0' AS text) AS bin_text UNION
  SELECT 3.0 AS min, 4.0 AS max, CAST('3.0,4.0' AS text) AS bin_text
) AS _active_reporter_dimension_likes_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL AND _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes IS NULL)
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL THEN (posts.likes < _active_reporter_dimension_likes_bin_table.max)
  WHEN _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes >= _active_reporter_dimension_likes_bin_table.min)
  ELSE ((posts.likes >= _active_reporter_dimension_likes_bin_table.min) AND (posts.likes < _active_reporter_dimension_likes_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_likes
   (0.3ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.2ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.072785"], ["updated_at", "2021-05-10 16:03:05.072785"], ["name", "James Joyce"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.075448"], ["updated_at", "2021-05-10 16:03:05.075448"], ["author_id", 50], ["status", 2], ["likes", 1], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.077847"], ["updated_at", "2021-05-10 16:03:05.077847"], ["author_id", 50], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.080201"], ["updated_at", "2021-05-10 16:03:05.080201"], ["author_id", 50], ["status", 2], ["likes", 1], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.082530"], ["updated_at", "2021-05-10 16:03:05.082530"], ["author_id", 50], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.084365"], ["updated_at", "2021-05-10 16:03:05.084365"], ["name", "Virginia Woolf"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.086404"], ["updated_at", "2021-05-10 16:03:05.086404"], ["author_id", 51], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.088594"], ["updated_at", "2021-05-10 16:03:05.088594"], ["author_id", 51], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.090797"], ["updated_at", "2021-05-10 16:03:05.090797"], ["author_id", 51], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.092697"], ["updated_at", "2021-05-10 16:03:05.092697"], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.094281"], ["updated_at", "2021-05-10 16:03:05.094281"], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MIN(posts.published_at) FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id"
   (0.2ms)  SELECT MAX(posts.published_at) FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.published_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.9ms)  SELECT _active_reporter_dimension_published_at_bin_table.bin_text AS _active_reporter_dimension_published_at, authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST(NULL AS timestamp with time zone) AS min, CAST(NULL AS timestamp with time zone) AS max, CAST(',' AS text) AS bin_text UNION
  SELECT CAST('2015-10-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-10-01 00:00:00 UTC,2015-11-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-12-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-11-01 00:00:00 UTC,2015-12-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_published_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL AND _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at IS NULL)
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL THEN (posts.published_at < _active_reporter_dimension_published_at_bin_table.max)
  WHEN _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at >= _active_reporter_dimension_published_at_bin_table.min)
  ELSE ((posts.published_at >= _active_reporter_dimension_published_at_bin_table.min) AND (posts.published_at < _active_reporter_dimension_published_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_published_at, _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.111079"], ["updated_at", "2021-05-10 16:03:05.111079"], ["name", "James Joyce"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.113240"], ["updated_at", "2021-05-10 16:03:05.113240"], ["author_id", 52], ["status", 2], ["likes", 1], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.115810"], ["updated_at", "2021-05-10 16:03:05.115810"], ["author_id", 52], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.2ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.118746"], ["updated_at", "2021-05-10 16:03:05.118746"], ["author_id", 52], ["status", 2], ["likes", 1], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "James Joyce"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.121449"], ["updated_at", "2021-05-10 16:03:05.121449"], ["author_id", 52], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.125739"], ["updated_at", "2021-05-10 16:03:05.125739"], ["name", "Virginia Woolf"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.129067"], ["updated_at", "2021-05-10 16:03:05.129067"], ["author_id", 53], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.131457"], ["updated_at", "2021-05-10 16:03:05.131457"], ["author_id", 53], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Virginia Woolf"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.134071"], ["updated_at", "2021-05-10 16:03:05.134071"], ["author_id", 53], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.137014"], ["updated_at", "2021-05-10 16:03:05.137014"], ["status", 2], ["likes", 2], ["published_at", "2015-10-01 00:00:00"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes", "published_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.138950"], ["updated_at", "2021-05-10 16:03:05.138950"], ["status", 2], ["likes", 3], ["published_at", "2015-11-01 00:00:00"]]
   (0.3ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.8ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author DESC NULLS LAST
   (0.4ms)  SELECT MIN(posts.published_at) FROM "posts"
   (0.3ms)  SELECT MAX(posts.published_at) FROM "posts"
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" WHERE (posts.published_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.7ms)  SELECT _active_reporter_dimension_published_at_bin_table.bin_text AS _active_reporter_dimension_published_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" INNER JOIN (
  SELECT CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-12-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-11-01 00:00:00 UTC,2015-12-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2015-10-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-10-01 00:00:00 UTC,2015-11-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST(NULL AS timestamp with time zone) AS min, CAST(NULL AS timestamp with time zone) AS max, CAST(',' AS text) AS bin_text
) AS _active_reporter_dimension_published_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL AND _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at IS NULL)
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL THEN (posts.published_at < _active_reporter_dimension_published_at_bin_table.max)
  WHEN _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at >= _active_reporter_dimension_published_at_bin_table.min)
  ELSE ((posts.published_at >= _active_reporter_dimension_published_at_bin_table.min) AND (posts.published_at < _active_reporter_dimension_published_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_published_at
  Post Load (0.7ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS LAST
  Post Load (0.6ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author DESC NULLS FIRST
   (0.4ms)  SELECT MIN(posts.published_at) FROM "posts"
   (0.3ms)  SELECT MAX(posts.published_at) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.published_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.8ms)  SELECT _active_reporter_dimension_published_at_bin_table.bin_text AS _active_reporter_dimension_published_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" INNER JOIN (
  SELECT CAST('2015-10-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-10-01 00:00:00 UTC,2015-11-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-12-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-11-01 00:00:00 UTC,2015-12-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST(NULL AS timestamp with time zone) AS min, CAST(NULL AS timestamp with time zone) AS max, CAST(',' AS text) AS bin_text
) AS _active_reporter_dimension_published_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL AND _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at IS NULL)
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL THEN (posts.published_at < _active_reporter_dimension_published_at_bin_table.max)
  WHEN _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at >= _active_reporter_dimension_published_at_bin_table.min)
  ELSE ((posts.published_at >= _active_reporter_dimension_published_at_bin_table.min) AND (posts.published_at < _active_reporter_dimension_published_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_published_at
   (0.4ms)  SELECT MIN(posts.published_at) FROM "posts"
   (0.3ms)  SELECT MAX(posts.published_at) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.published_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.8ms)  SELECT _active_reporter_dimension_published_at_bin_table.bin_text AS _active_reporter_dimension_published_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_total_likes, AVG(posts.likes) AS _report_aggregator_mean_likes, MIN(posts.likes) AS _report_aggregator_min_likes, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" INNER JOIN (
  SELECT CAST(NULL AS timestamp with time zone) AS min, CAST(NULL AS timestamp with time zone) AS max, CAST(',' AS text) AS bin_text UNION
  SELECT CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-12-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-11-01 00:00:00 UTC,2015-12-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2015-10-01 00:00:00' AS timestamp with time zone) AS min, CAST('2015-11-01 00:00:00' AS timestamp with time zone) AS max, CAST('2015-10-01 00:00:00 UTC,2015-11-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_published_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL AND _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at IS NULL)
  WHEN _active_reporter_dimension_published_at_bin_table.min IS NULL THEN (posts.published_at < _active_reporter_dimension_published_at_bin_table.max)
  WHEN _active_reporter_dimension_published_at_bin_table.max IS NULL THEN (posts.published_at >= _active_reporter_dimension_published_at_bin_table.min)
  ELSE ((posts.published_at >= _active_reporter_dimension_published_at_bin_table.min) AND (posts.published_at < _active_reporter_dimension_published_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_published_at
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.211772"], ["updated_at", "2021-05-10 16:03:05.211772"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.213088"], ["updated_at", "2021-05-10 16:03:05.213088"], ["author_id", 54], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.215030"], ["updated_at", "2021-05-10 16:03:05.215030"], ["author_id", 54], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.217179"], ["updated_at", "2021-05-10 16:03:05.217179"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.218398"], ["updated_at", "2021-05-10 16:03:05.218398"], ["author_id", 55], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.220356"], ["updated_at", "2021-05-10 16:03:05.220356"], ["author_id", 55], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.222098"], ["updated_at", "2021-05-10 16:03:05.222098"], ["author_id", 55], ["status", 2], ["likes", 5]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.223958"], ["updated_at", "2021-05-10 16:03:05.223958"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.225030"], ["updated_at", "2021-05-10 16:03:05.225030"], ["author_id", 56], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.5ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, ARRAY_AGG(posts.id) AS _report_aggregator_post_ids FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.229471"], ["updated_at", "2021-05-10 16:03:05.229471"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.230482"], ["updated_at", "2021-05-10 16:03:05.230482"], ["author_id", 57], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.232085"], ["updated_at", "2021-05-10 16:03:05.232085"], ["author_id", 57], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.233784"], ["updated_at", "2021-05-10 16:03:05.233784"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.234785"], ["updated_at", "2021-05-10 16:03:05.234785"], ["author_id", 58], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.236402"], ["updated_at", "2021-05-10 16:03:05.236402"], ["author_id", 58], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.237982"], ["updated_at", "2021-05-10 16:03:05.237982"], ["author_id", 58], ["status", 2], ["likes", 5]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.239550"], ["updated_at", "2021-05-10 16:03:05.239550"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.240455"], ["updated_at", "2021-05-10 16:03:05.240455"], ["author_id", 59], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, MAX(posts.likes) AS _report_aggregator_max_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.244476"], ["updated_at", "2021-05-10 16:03:05.244476"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.245618"], ["updated_at", "2021-05-10 16:03:05.245618"], ["author_id", 60], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.247296"], ["updated_at", "2021-05-10 16:03:05.247296"], ["author_id", 60], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.249045"], ["updated_at", "2021-05-10 16:03:05.249045"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.250144"], ["updated_at", "2021-05-10 16:03:05.250144"], ["author_id", 61], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.251901"], ["updated_at", "2021-05-10 16:03:05.251901"], ["author_id", 61], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.253511"], ["updated_at", "2021-05-10 16:03:05.253511"], ["author_id", 61], ["status", 2], ["likes", 5]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.255126"], ["updated_at", "2021-05-10 16:03:05.255126"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.256106"], ["updated_at", "2021-05-10 16:03:05.256106"], ["author_id", 62], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, MIN(posts.likes) AS _report_aggregator_min_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.260098"], ["updated_at", "2021-05-10 16:03:05.260098"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.261115"], ["updated_at", "2021-05-10 16:03:05.261115"], ["author_id", 63], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.262716"], ["updated_at", "2021-05-10 16:03:05.262716"], ["author_id", 63], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.264450"], ["updated_at", "2021-05-10 16:03:05.264450"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.265631"], ["updated_at", "2021-05-10 16:03:05.265631"], ["author_id", 64], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.267576"], ["updated_at", "2021-05-10 16:03:05.267576"], ["author_id", 64], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.269305"], ["updated_at", "2021-05-10 16:03:05.269305"], ["author_id", 64], ["status", 2], ["likes", 5]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.270943"], ["updated_at", "2021-05-10 16:03:05.270943"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.271936"], ["updated_at", "2021-05-10 16:03:05.271936"], ["author_id", 65], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, AVG(posts.likes) AS _report_aggregator_mean_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.276043"], ["updated_at", "2021-05-10 16:03:05.276043"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.277107"], ["updated_at", "2021-05-10 16:03:05.277107"], ["author_id", 66], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.278759"], ["updated_at", "2021-05-10 16:03:05.278759"], ["author_id", 66], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.280429"], ["updated_at", "2021-05-10 16:03:05.280429"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.281378"], ["updated_at", "2021-05-10 16:03:05.281378"], ["author_id", 67], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.283005"], ["updated_at", "2021-05-10 16:03:05.283005"], ["author_id", 67], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.284743"], ["updated_at", "2021-05-10 16:03:05.284743"], ["author_id", 67], ["status", 2], ["likes", 5]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.286432"], ["updated_at", "2021-05-10 16:03:05.286432"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.287320"], ["updated_at", "2021-05-10 16:03:05.287320"], ["author_id", 68], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, SUM(posts.likes) AS _report_aggregator_total_likes FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.291231"], ["updated_at", "2021-05-10 16:03:05.291231"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.292237"], ["updated_at", "2021-05-10 16:03:05.292237"], ["author_id", 69], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.294132"], ["updated_at", "2021-05-10 16:03:05.294132"], ["author_id", 69], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.295705"], ["updated_at", "2021-05-10 16:03:05.295705"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.296613"], ["updated_at", "2021-05-10 16:03:05.296613"], ["author_id", 70], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.298210"], ["updated_at", "2021-05-10 16:03:05.298210"], ["author_id", 70], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.299884"], ["updated_at", "2021-05-10 16:03:05.299884"], ["author_id", 70], ["status", 2], ["likes", 5]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Chester"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.301511"], ["updated_at", "2021-05-10 16:03:05.301511"], ["name", "Chester"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.302439"], ["updated_at", "2021-05-10 16:03:05.302439"], ["author_id", 71], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, posts.status AS _active_reporter_dimension_status, COUNT(DISTINCT posts.id) AS _report_aggregator_count FROM "posts" LEFT OUTER JOIN "authors" ON "authors"."id" = "posts"."author_id" GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_status ORDER BY _active_reporter_dimension_author ASC NULLS FIRST, _active_reporter_dimension_status ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.2ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.2ms)  SELECT MAX(posts.likes) FROM "posts"
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.328824"], ["updated_at", "2021-05-10 16:03:05.328824"], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.330115"], ["updated_at", "2021-05-10 16:03:05.330115"], ["status", 2], ["likes", 10]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.331217"], ["updated_at", "2021-05-10 16:03:05.331217"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.2ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.2ms)  SELECT MAX(posts.likes) FROM "posts"
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status", "likes") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.341482"], ["updated_at", "2021-05-10 16:03:05.341482"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.2ms)  SELECT MAX(posts.likes) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.likes IS NULL) LIMIT $1  [["LIMIT", 1]]
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.346076"], ["updated_at", "2021-05-10 16:03:05.346076"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.347165"], ["updated_at", "2021-05-10 16:03:05.347165"], ["author_id", 72], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.348892"], ["updated_at", "2021-05-10 16:03:05.348892"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.349968"], ["updated_at", "2021-05-10 16:03:05.349968"], ["author_id", 73], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.351171"], ["updated_at", "2021-05-10 16:03:05.351171"], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT "posts".* FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id WHERE (authors.name IN ('Alice'))
  Post Load (0.3ms)  SELECT "posts".* FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id WHERE (authors.name IS NULL OR authors.name IN (NULL))
  Post Load (0.3ms)  SELECT "posts".* FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id WHERE (authors.name IS NULL OR authors.name IN ('Alice'))
  Post Load (0.3ms)  SELECT "posts".* FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id WHERE (authors.name IN ('Alice','Bob'))
  Post Load (0.2ms)  SELECT "posts".* FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id WHERE (authors.name IN (NULL))
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.357081"], ["updated_at", "2021-05-10 16:03:05.357081"], ["name", "Alice"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.358107"], ["updated_at", "2021-05-10 16:03:05.358107"], ["author_id", 74], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Alice"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.359626"], ["updated_at", "2021-05-10 16:03:05.359626"], ["author_id", 74], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "status") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.360715"], ["updated_at", "2021-05-10 16:03:05.360715"], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.362214"], ["updated_at", "2021-05-10 16:03:05.362214"], ["name", "Bob"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.363164"], ["updated_at", "2021-05-10 16:03:05.363164"], ["author_id", 75], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.364721"], ["updated_at", "2021-05-10 16:03:05.364721"], ["author_id", 75], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Bob"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.366245"], ["updated_at", "2021-05-10 16:03:05.366245"], ["author_id", 75], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(*) AS count FROM "posts" LEFT OUTER JOIN authors ON authors.id = posts.author_id GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.393826"], ["updated_at", "2021-05-10 16:03:05.393826"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2019-12-18 00:00:00"], ["updated_at", "2021-05-10 16:03:05.394892"], ["author_id", 76], ["status", 2], ["likes", 23]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.396558"], ["author_id", 76], ["status", 2], ["likes", 7]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 16:03:05.398222"], ["author_id", 76], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-08 00:00:00"], ["updated_at", "2021-05-10 16:03:05.400009"], ["author_id", 76], ["status", 2], ["likes", 11]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.401656"], ["updated_at", "2021-05-10 16:03:05.401656"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 16:03:05.402549"], ["author_id", 77], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-02-27 00:00:00"], ["updated_at", "2021-05-10 16:03:05.404112"], ["author_id", 77], ["status", 2], ["likes", 24]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-02-28 00:00:00"], ["updated_at", "2021-05-10 16:03:05.405674"], ["author_id", 77], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.407236"], ["author_id", 77], ["status", 2], ["likes", 19]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-04-08 00:00:00"], ["updated_at", "2021-05-10 16:03:05.408781"], ["author_id", 77], ["status", 2], ["likes", 8]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.4ms)  SELECT MAX(posts.created_at) FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00')
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.7ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-01-01 00:00:00 UTC,2020-02-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-02-01 00:00:00 UTC,2020-03-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-03-01 00:00:00 UTC,2020-04-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-05-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-04-01 00:00:00 UTC,2020-05-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.419094"], ["updated_at", "2021-05-10 16:03:05.419094"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2019-12-18 00:00:00"], ["updated_at", "2021-05-10 16:03:05.420178"], ["author_id", 78], ["status", 2], ["likes", 23]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.421804"], ["author_id", 78], ["status", 2], ["likes", 7]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 16:03:05.423503"], ["author_id", 78], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-08 00:00:00"], ["updated_at", "2021-05-10 16:03:05.425031"], ["author_id", 78], ["status", 2], ["likes", 11]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.426702"], ["updated_at", "2021-05-10 16:03:05.426702"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 16:03:05.427644"], ["author_id", 79], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-02-27 00:00:00"], ["updated_at", "2021-05-10 16:03:05.429200"], ["author_id", 79], ["status", 2], ["likes", 24]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-02-28 00:00:00"], ["updated_at", "2021-05-10 16:03:05.430833"], ["author_id", 79], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.432604"], ["author_id", 79], ["status", 2], ["likes", 19]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-04-08 00:00:00"], ["updated_at", "2021-05-10 16:03:05.434312"], ["author_id", 79], ["status", 2], ["likes", 8]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MAX(posts.created_at) FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00')
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.7ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-01-01 00:00:00 UTC,2020-02-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-02-01 00:00:00 UTC,2020-03-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-03-01 00:00:00 UTC,2020-04-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-05-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-04-01 00:00:00 UTC,2020-05-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.446450"], ["updated_at", "2021-05-10 16:03:05.446450"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2019-12-18 00:00:00"], ["updated_at", "2021-05-10 16:03:05.447549"], ["author_id", 80], ["status", 2], ["likes", 23]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.449255"], ["author_id", 80], ["status", 2], ["likes", 7]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 16:03:05.450877"], ["author_id", 80], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-08 00:00:00"], ["updated_at", "2021-05-10 16:03:05.452416"], ["author_id", 80], ["status", 2], ["likes", 11]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.453964"], ["updated_at", "2021-05-10 16:03:05.453964"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 16:03:05.454885"], ["author_id", 81], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-02-27 00:00:00"], ["updated_at", "2021-05-10 16:03:05.456446"], ["author_id", 81], ["status", 2], ["likes", 24]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-02-28 00:00:00"], ["updated_at", "2021-05-10 16:03:05.457996"], ["author_id", 81], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.459580"], ["author_id", 81], ["status", 2], ["likes", 19]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-04-08 00:00:00"], ["updated_at", "2021-05-10 16:03:05.461333"], ["author_id", 81], ["status", 2], ["likes", 8]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MAX(posts.created_at) FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00')
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.9ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-01-01 00:00:00 UTC,2020-02-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-02-01 00:00:00 UTC,2020-03-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-03-01 00:00:00 UTC,2020-04-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-05-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-04-01 00:00:00 UTC,2020-05-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.473019"], ["updated_at", "2021-05-10 16:03:05.473019"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2019-12-18 00:00:00"], ["updated_at", "2021-05-10 16:03:05.474127"], ["author_id", 82], ["status", 2], ["likes", 23]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.475853"], ["author_id", 82], ["status", 2], ["likes", 7]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 16:03:05.477512"], ["author_id", 82], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-08 00:00:00"], ["updated_at", "2021-05-10 16:03:05.479262"], ["author_id", 82], ["status", 2], ["likes", 11]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.481036"], ["updated_at", "2021-05-10 16:03:05.481036"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 16:03:05.482039"], ["author_id", 83], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-02-27 00:00:00"], ["updated_at", "2021-05-10 16:03:05.483648"], ["author_id", 83], ["status", 2], ["likes", 24]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-02-28 00:00:00"], ["updated_at", "2021-05-10 16:03:05.485245"], ["author_id", 83], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.486833"], ["author_id", 83], ["status", 2], ["likes", 19]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-04-08 00:00:00"], ["updated_at", "2021-05-10 16:03:05.488406"], ["author_id", 83], ["status", 2], ["likes", 8]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MAX(posts.created_at) FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00')
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.7ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-01-01 00:00:00 UTC,2020-02-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-02-01 00:00:00 UTC,2020-03-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-03-01 00:00:00 UTC,2020-04-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-05-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-04-01 00:00:00 UTC,2020-05-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
  Post Load (0.3ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.506509"], ["updated_at", "2021-05-10 16:03:05.506509"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2019-12-18 00:00:00"], ["updated_at", "2021-05-10 16:03:05.507713"], ["author_id", 84], ["status", 2], ["likes", 23]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.509683"], ["author_id", 84], ["status", 2], ["likes", 7]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 16:03:05.511640"], ["author_id", 84], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-08 00:00:00"], ["updated_at", "2021-05-10 16:03:05.513541"], ["author_id", 84], ["status", 2], ["likes", 11]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.515486"], ["updated_at", "2021-05-10 16:03:05.515486"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 16:03:05.516732"], ["author_id", 85], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-02-27 00:00:00"], ["updated_at", "2021-05-10 16:03:05.518667"], ["author_id", 85], ["status", 2], ["likes", 24]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-02-28 00:00:00"], ["updated_at", "2021-05-10 16:03:05.520564"], ["author_id", 85], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.522332"], ["author_id", 85], ["status", 2], ["likes", 19]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-04-08 00:00:00"], ["updated_at", "2021-05-10 16:03:05.524060"], ["author_id", 85], ["status", 2], ["likes", 8]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MAX(posts.created_at) FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00')
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (posts.created_at >= '2020-01-01 00:00:00') AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE ((posts.created_at >= '2019-12-01 00:00:00' AND posts.created_at < '2020-01-01 00:00:00')) AND (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.5ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2019-12-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS max, CAST('2019-12-01 00:00:00 UTC,2020-01-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE ((posts.created_at >= '2019-12-01 00:00:00' AND posts.created_at < '2020-01-01 00:00:00')) GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST LIMIT $1  [["LIMIT", 1]]
  Post Load (0.4ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2019-12-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS max, CAST('2019-12-01 00:00:00 UTC,2020-01-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE ((posts.created_at >= '2019-12-01 00:00:00' AND posts.created_at < '2020-01-01 00:00:00')) GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
  Post Load (0.6ms)  SELECT authors.name AS _active_reporter_dimension_author, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" INNER JOIN (
  SELECT CAST('2020-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-01-01 00:00:00 UTC,2020-02-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-02-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-02-01 00:00:00 UTC,2020-03-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-03-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-03-01 00:00:00 UTC,2020-04-01 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2020-04-01 00:00:00' AS timestamp with time zone) AS min, CAST('2020-05-01 00:00:00' AS timestamp with time zone) AS max, CAST('2020-04-01 00:00:00 UTC,2020-05-01 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) WHERE (posts.created_at >= '2020-01-01 00:00:00') GROUP BY _active_reporter_dimension_author, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_author ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.3ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.546477"], ["updated_at", "2021-05-10 16:03:05.546477"], ["name", "Phil"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.547671"], ["author_id", 86], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.549530"], ["author_id", 86], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phyllis"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.551385"], ["updated_at", "2021-05-10 16:03:05.551385"], ["name", "Phyllis"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.552528"], ["author_id", 87], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.2ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phyllis"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.554395"], ["author_id", 87], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.2ms)  SELECT "posts".* FROM "posts"
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.558155"], ["updated_at", "2021-05-10 16:03:05.558155"], ["name", "Phil"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.559120"], ["author_id", 88], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.560599"], ["author_id", 88], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phyllis"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.562167"], ["updated_at", "2021-05-10 16:03:05.562167"], ["name", "Phyllis"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.563074"], ["author_id", 89], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phyllis"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.564562"], ["author_id", 89], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.2ms)  SELECT "posts".* FROM "posts"
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.567850"], ["updated_at", "2021-05-10 16:03:05.567850"], ["name", "Phil"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.568782"], ["author_id", 90], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Phil"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status") VALUES ($1, $2, $3, $4) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.570319"], ["author_id", 90], ["status", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.3ms)  SELECT "posts".* FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (authors.name IN ('Phil'))
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Post Exists? (0.3ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (authors.name IN ('')) LIMIT $1  [["LIMIT", 1]]
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (authors.name IS NULL OR authors.name IN (NULL)) LIMIT $1  [["LIMIT", 1]]
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.586888"], ["updated_at", "2021-05-10 16:03:05.586888"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.588040"], ["author_id", 91], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 16:03:05.589667"], ["author_id", 91], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.591259"], ["updated_at", "2021-05-10 16:03:05.591259"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 16:03:05.592160"], ["author_id", 92], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.593657"], ["author_id", 92], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-15 00:00:00"], ["updated_at", "2021-05-10 16:03:05.595188"], ["author_id", 92], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.2ms)  SELECT 'totals' AS _active_reporter_dimension_totals, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" GROUP BY _active_reporter_dimension_totals ORDER BY _active_reporter_dimension_totals ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.599025"], ["updated_at", "2021-05-10 16:03:05.599025"], ["name", "Timmy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.599948"], ["author_id", 93], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Timmy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-12 00:00:00"], ["updated_at", "2021-05-10 16:03:05.601463"], ["author_id", 93], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Author Create (0.2ms)  INSERT INTO "authors" ("created_at", "updated_at", "name") VALUES ($1, $2, $3) RETURNING "id"  [["created_at", "2021-05-10 16:03:05.603054"], ["updated_at", "2021-05-10 16:03:05.603054"], ["name", "Tammy"]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-01-15 00:00:00"], ["updated_at", "2021-05-10 16:03:05.603940"], ["author_id", 94], ["status", 2], ["likes", 3]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.605436"], ["author_id", 94], ["status", 2], ["likes", 4]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Author Load (0.1ms)  SELECT "authors".* FROM "authors" WHERE "authors"."name" = $1 LIMIT $2  [["name", "Tammy"], ["LIMIT", 1]]
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "author_id", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2020-03-15 00:00:00"], ["updated_at", "2021-05-10 16:03:05.606939"], ["author_id", 94], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.4ms)  SELECT 'totals' AS _active_reporter_dimension_totals, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" WHERE (authors.name IN ('Tammy')) GROUP BY _active_reporter_dimension_totals ORDER BY _active_reporter_dimension_totals ASC NULLS FIRST
  Post Load (0.2ms)  SELECT 'totals' AS _active_reporter_dimension_totals, COUNT(DISTINCT posts.id) AS _report_aggregator_count, SUM(posts.likes) AS _report_aggregator_likes FROM "posts" GROUP BY _active_reporter_dimension_totals ORDER BY _active_reporter_dimension_totals ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.612358"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.2ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.613763"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.615264"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 16:03:05.616532"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.2ms)  SELECT MIN(posts.created_at) FROM "posts"
   (0.2ms)  SELECT MAX(posts.created_at) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.5ms)  SELECT posts.title AS _active_reporter_dimension_title, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_post_count, SUM(posts.likes) AS _report_aggregator_likes_count FROM "posts" INNER JOIN (
  SELECT CAST('2016-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-01 00:00:00 UTC,2016-01-02 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-03 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-02 00:00:00 UTC,2016-01-03 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_title, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_title ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.624114"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.625506"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.626896"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 16:03:05.628221"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
  Post Load (0.2ms)  SELECT posts.title AS _active_reporter_dimension_title, COUNT(DISTINCT posts.id) AS _report_aggregator_post_count FROM "posts" GROUP BY _active_reporter_dimension_title ORDER BY _active_reporter_dimension_title ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.631777"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.633265"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.634814"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 16:03:05.636160"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.2ms)  SELECT MAX(posts.likes) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.likes IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.6ms)  SELECT posts.title AS _active_reporter_dimension_title, _active_reporter_dimension_likes_bin_table.bin_text AS _active_reporter_dimension_likes, COUNT(DISTINCT posts.id) AS _report_aggregator_post_count FROM "posts" INNER JOIN (
  SELECT 1.0 AS min, 2.0 AS max, CAST('1.0,2.0' AS text) AS bin_text UNION
  SELECT 2.0 AS min, 3.0 AS max, CAST('2.0,3.0' AS text) AS bin_text
) AS _active_reporter_dimension_likes_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL AND _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes IS NULL)
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL THEN (posts.likes < _active_reporter_dimension_likes_bin_table.max)
  WHEN _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes >= _active_reporter_dimension_likes_bin_table.min)
  ELSE ((posts.likes >= _active_reporter_dimension_likes_bin_table.min) AND (posts.likes < _active_reporter_dimension_likes_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_title, _active_reporter_dimension_likes ORDER BY _active_reporter_dimension_title ASC NULLS FIRST
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.642481"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.643912"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.645234"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 16:03:05.646631"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.2ms)  SELECT MIN(posts.created_at) FROM "posts"
   (0.2ms)  SELECT MAX(posts.created_at) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
   (0.2ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.2ms)  SELECT MAX(posts.likes) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.likes IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.8ms)  SELECT posts.title AS _active_reporter_dimension_title, _active_reporter_dimension_likes_bin_table.bin_text AS _active_reporter_dimension_likes, _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, COUNT(DISTINCT posts.id) AS _report_aggregator_post_count FROM "posts" INNER JOIN (
  SELECT 1.0 AS min, 2.0 AS max, CAST('1.0,2.0' AS text) AS bin_text UNION
  SELECT 2.0 AS min, 3.0 AS max, CAST('2.0,3.0' AS text) AS bin_text
) AS _active_reporter_dimension_likes_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL AND _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes IS NULL)
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL THEN (posts.likes < _active_reporter_dimension_likes_bin_table.max)
  WHEN _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes >= _active_reporter_dimension_likes_bin_table.min)
  ELSE ((posts.likes >= _active_reporter_dimension_likes_bin_table.min) AND (posts.likes < _active_reporter_dimension_likes_bin_table.max))
  END
) INNER JOIN (
  SELECT CAST('2016-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-01 00:00:00 UTC,2016-01-02 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-03 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-02 00:00:00 UTC,2016-01-03 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_title, _active_reporter_dimension_likes, _active_reporter_dimension_created_at ORDER BY _active_reporter_dimension_title ASC NULLS FIRST
   (0.2ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.705131"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.706690"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.708145"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 16:03:05.709601"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.712334"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.713807"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.715193"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.3ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 16:03:05.716635"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.2ms)  SELECT COUNT(*) FROM "posts"
   (0.2ms)  SELECT COUNT(*) FROM "posts"
   (0.1ms)  ROLLBACK
   (0.1ms)  BEGIN
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.720547"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.721903"], ["title", "A"], ["status", 2], ["likes", 2]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-01 00:00:00"], ["updated_at", "2021-05-10 16:03:05.723270"], ["title", "B"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.1ms)  SAVEPOINT active_record_1
  Post Create (0.2ms)  INSERT INTO "posts" ("created_at", "updated_at", "title", "status", "likes") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["created_at", "2016-01-02 00:00:00"], ["updated_at", "2021-05-10 16:03:05.724626"], ["title", "A"], ["status", 2], ["likes", 1]]
   (0.1ms)  RELEASE SAVEPOINT active_record_1
   (0.3ms)  SELECT MIN(posts.created_at) FROM "posts"
   (0.2ms)  SELECT MAX(posts.created_at) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.created_at IS NULL) LIMIT $1  [["LIMIT", 1]]
   (0.2ms)  SELECT MIN(posts.likes) FROM "posts"
   (0.2ms)  SELECT MAX(posts.likes) FROM "posts"
  Post Exists? (0.2ms)  SELECT 1 AS one FROM "posts" WHERE (posts.likes IS NULL) LIMIT $1  [["LIMIT", 1]]
  Post Load (0.8ms)  SELECT _active_reporter_dimension_created_at_bin_table.bin_text AS _active_reporter_dimension_created_at, _active_reporter_dimension_likes_bin_table.bin_text AS _active_reporter_dimension_likes, posts.title AS _active_reporter_dimension_title, COUNT(DISTINCT posts.id) AS _report_aggregator_post_count FROM "posts" INNER JOIN (
  SELECT CAST('2016-01-01 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-01 00:00:00 UTC,2016-01-02 00:00:00 UTC' AS text) AS bin_text UNION
  SELECT CAST('2016-01-02 00:00:00' AS timestamp with time zone) AS min, CAST('2016-01-03 00:00:00' AS timestamp with time zone) AS max, CAST('2016-01-02 00:00:00 UTC,2016-01-03 00:00:00 UTC' AS text) AS bin_text
) AS _active_reporter_dimension_created_at_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL AND _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at IS NULL)
  WHEN _active_reporter_dimension_created_at_bin_table.min IS NULL THEN (posts.created_at < _active_reporter_dimension_created_at_bin_table.max)
  WHEN _active_reporter_dimension_created_at_bin_table.max IS NULL THEN (posts.created_at >= _active_reporter_dimension_created_at_bin_table.min)
  ELSE ((posts.created_at >= _active_reporter_dimension_created_at_bin_table.min) AND (posts.created_at < _active_reporter_dimension_created_at_bin_table.max))
  END
) INNER JOIN (
  SELECT 1.0 AS min, 2.0 AS max, CAST('1.0,2.0' AS text) AS bin_text UNION
  SELECT 2.0 AS min, 3.0 AS max, CAST('2.0,3.0' AS text) AS bin_text
) AS _active_reporter_dimension_likes_bin_table ON (
  CASE
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL AND _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes IS NULL)
  WHEN _active_reporter_dimension_likes_bin_table.min IS NULL THEN (posts.likes < _active_reporter_dimension_likes_bin_table.max)
  WHEN _active_reporter_dimension_likes_bin_table.max IS NULL THEN (posts.likes >= _active_reporter_dimension_likes_bin_table.min)
  ELSE ((posts.likes >= _active_reporter_dimension_likes_bin_table.min) AND (posts.likes < _active_reporter_dimension_likes_bin_table.max))
  END
) GROUP BY _active_reporter_dimension_created_at, _active_reporter_dimension_likes, _active_reporter_dimension_title ORDER BY _active_reporter_dimension_title ASC NULLS FIRST
   (0.2ms)  ROLLBACK