ruby-activerecord-explain-analyze 0.1.0-2 source package in Ubuntu

Changelog

ruby-activerecord-explain-analyze (0.1.0-2) unstable; urgency=medium

  * Team upload
  * Source only upload for bullseye
  * Drop compat file, rely on debhelper-compat and bump compat level to 12
  * Bump standards version to 4.4.0
  * Add epoch for ruby-activerecord dependency

 -- Pirate Praveen <email address hidden>  Wed, 11 Sep 2019 10:55:14 +0530

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-activerecord-explain-analyze_0.1.0-2.dsc 2.2 KiB 2ac8fee37e316f8af02baffcadf94ab0a0a6444d8c249ed6bec8b361642c9ca9
ruby-activerecord-explain-analyze_0.1.0.orig.tar.gz 3.8 KiB 98dd6a5be2295537f7ed732eba2e9afa3e67def2df6d7067c09f245809e94bb5
ruby-activerecord-explain-analyze_0.1.0-2.debian.tar.xz 2.2 KiB 9c1b14294962c9c72cbf7e58a3c507a426274cce2a3728f24043ccede313a638

No changes file available.

Binary packages built by this source

ruby-activerecord-explain-analyze: ActiveRecord#explain with support for EXPLAIN ANALYZE

 Extends ActiveRecord#explain with support for EXPLAIN ANALYZE and output
 formats of JSON, XML, and YAML.
 .
 What's EXPLAIN ANALYZE? PostgreSQL devises a query plan for each query it
 receives. Choosing the right plan to match the query structure and the
 properties of the data is absolutely critical for good performance, so the
 system includes a complex planner that tries to choose good plans. One can
 use the EXPLAIN command to see what query plan the planner creates for any
 query. With EXPLAIN ANALYZE, EXPLAIN actually executes the query, and then
 displays the true row counts and true run time accumulated within each plan
 node.