Skip to content

Commit

Permalink
cut version 2024.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ardentperf committed Apr 8, 2024
1 parent 6938622 commit b8c63f1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ Revision history for PostgreSQL extension dsef.
- Include query in main ExplainFull output, bugfixes: show mcv w col, show cols missing stats
2024.3.13 2024-03-13T00:00:00Z
- bugfixes: v9 version number handling, dont truncate dates in histograms
2024.4.8 2024-04-08T00:00:00Z
- add yugabyte support (Franck Pachot)
10 changes: 5 additions & 5 deletions META.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "dsef",
"abstract": "DiffStats and ExplainFull: detailed SQL reports for 3rd party help & support",
"description": "DiffStats and ExplainFull can generate detailed reports which are useful for troubleshooting performance of a SQL statement, and especially for working with 3rd parties who are helping in the process. It reduces the amount of back-and-forth requests for information by capturing a great deal of commonly useful data about the performance of a SQL statement.",
"version": "2024.3.13",
"abstract": "DiffStats and ExplainFull: detailed SQL reports for third party help & support",
"description": "DiffStats and ExplainFull can generate detailed reports which are useful for troubleshooting performance of a SQL statement, and especially for working with third parties who are helping in the process. It reduces the amount of back-and-forth requests for information by capturing a great deal of commonly useful data about the performance of a SQL statement.",
"version": "2024.4.8",
"maintainer": [
"Jeremy Schneider <[email protected]>"
],
"license": "postgresql",
"provides": {
"dsef": {
"abstract": "DiffStats and ExplainFull: detailed SQL reports for 3rd party help & support",
"abstract": "DiffStats and ExplainFull: detailed SQL reports for third party help & support",
"file": "sql/dsef.sql",
"docfile": "README.md",
"version": "2024.3.13"
"version": "2024.4.8"
}
},
"resources": {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion sql/dsef.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

CREATE OR REPLACE FUNCTION ds_version() RETURNS text AS $$
-- the version of this package
SELECT 'DSEF for PostgreSQL (DiffStats & ExplainFull) Version: 2024.3.13';
SELECT 'DSEF for PostgreSQL (DiffStats & ExplainFull) Version: 2024.4.8';
$$ LANGUAGE SQL;


Expand Down
4 changes: 2 additions & 2 deletions tle/dsef.tle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
DROP EXTENSION IF EXISTS dsef;
SELECT * FROM pgtle.uninstall_extension_if_exists('dsef');
SELECT pgtle.install_extension('dsef','2024.3.13','DiffStats and ExplainFull: detailed SQL reports for 3rd party help & support',$_pgtle_$
SELECT pgtle.install_extension('dsef','2024.4.8','DiffStats and ExplainFull: detailed SQL reports for third party help & support',$_pgtle_$
-- most extensions will complain if script is sourced in psql, rather than via CREATE EXTENSION
--
-- DSEF allows the option of installation via SQL

CREATE OR REPLACE FUNCTION ds_version() RETURNS text AS $$
-- the version of this package
SELECT 'DSEF for PostgreSQL (DiffStats & ExplainFull) Version: 2024.3.13';
SELECT 'DSEF for PostgreSQL (DiffStats & ExplainFull) Version: 2024.4.8';
$$ LANGUAGE SQL;


Expand Down

0 comments on commit b8c63f1

Please sign in to comment.