Skip to content

[no-release-notes] Updated pganalyze#2117

Merged
Hydrocharged merged 1 commit intomainfrom
daylon/update-pganalyze
Dec 15, 2025
Merged

[no-release-notes] Updated pganalyze#2117
Hydrocharged merged 1 commit intomainfrom
daylon/update-pganalyze

Conversation

@Hydrocharged
Copy link
Copy Markdown
Collaborator

No description provided.

@Hydrocharged Hydrocharged merged commit 83fffaf into main Dec 15, 2025
18 of 19 checks passed
@Hydrocharged Hydrocharged deleted the daylon/update-pganalyze branch December 15, 2025 12:33
@github-actions
Copy link
Copy Markdown
Contributor

Main PR
covering_index_scan_postgres 524.26/s 504.57/s -3.8%
index_join_postgres 146.31/s 138.44/s -5.4%
index_join_scan_postgres 260.74/s 258.10/s -1.1%
index_scan_postgres 13.35/s 13.20/s -1.2%
oltp_point_select 2639.21/s 2597.50/s -1.6%
oltp_read_only 2025.99/s 2011.42/s -0.8%
select_random_points 139.70/s 135.27/s -3.2%
select_random_ranges 41.98/s 41.72/s -0.7%
table_scan_postgres 13.26/s 12.90/s -2.8%
types_table_scan_postgres 6.08/s 6.00/s -1.4%

@github-actions
Copy link
Copy Markdown
Contributor

Main PR
Total 42090 42090
Successful 17304 17254
Failures 24786 24836
Partial Successes1 5596 5587
Main PR
Successful 41.1119% 40.9931%
Failures 58.8881% 59.0069%

${\color{red}Regressions (48)}$

rowtypes

QUERY:          create temp table quadtable(f1 int, q quad);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          create temp table people (fn fullname, bd date);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          create temp table pp (f1 text);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          insert into pp values (repeat('abcdefghijkl', 100000));
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          select ROW(1,2) < ROW(1,3) as true;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select ROW(1,2) < ROW(1,NULL) as null;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select ROW(1,2,3) < ROW(1,3,NULL) as true;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select ROW(11,'ABC') < ROW(11,'DEF') as true;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select ROW(12,'ABC') > ROW(11,'DEF') as true;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select ROW(1,2,3) < ROW(1,NULL,4) as null;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select ROW(1,2,3) <> ROW(1,NULL,4) as true;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select ROW(1,2) = ROW(1,2::int8);
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select ROW(1,2) in (ROW(3,4), ROW(1,2));
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select ROW(1,2) in (ROW(3,4), ROW(1,2::int8));
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select thousand, tenthous from tenk1
where (thousand, tenthous) >= (997, 5000)
order by thousand, tenthous;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          create temp table test_table (a text, b text);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          insert into test_table values ('a', 'b');
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          insert into test_table select 'a', null from generate_series(1,1000);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          insert into test_table values ('b', 'a');
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          create index on test_table (a,b);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          set enable_sort = off;
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          select a,b from test_table where (a,b) > ('a','a') order by a,b;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          reset enable_sort;
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          select ROW();
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select ROW() IS NULL;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select array[ row(1,2), row(3,4), row(5,6) ];
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select row(1,1.1) = any (array[ row(7,7.7), row(1,1.1), row(0,0.0) ]);
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select row(1,1.1) = any (array[ row(7,7.7), row(1,1.0), row(0,0.0) ]);
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          create type testtype2 as (a smallint, b bool);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          CREATE TABLE price (
    id SERIAL PRIMARY KEY,
    active BOOLEAN NOT NULL,
    price NUMERIC
);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          CREATE TYPE price_input AS (
    id INTEGER,
    price NUMERIC
);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          CREATE TYPE price_key AS (
    id INTEGER
);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          insert into price values (1,false,42), (10,false,100), (11,true,17.99);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          rollback;
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          create temp table compos (f1 int, f2 text);
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference
QUERY:          select cast (fullname as text) from fullname;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select fullname::text from fullname;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select cast (row('Jim', 'Beam') as text);
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          select (row('Jim', 'Beam'))::text;
RECEIVED ERROR: DoltgresHandler caught panic: runtime error: invalid memory address or nil pointer dereference (errno 1105) (sqlstate HY000)
QUERY:          insert into fullname values ('Joe', 'Blow');
RECEIVED ERROR: runtime error: invalid memory address or nil pointer dereference

${\color{lightgreen}Progressions (1)}$

rowtypes

QUERY: select ROW() = ROW();

Footnotes

  1. These are tests that we're marking as Successful, however they do not match the expected output in some way. This is due to small differences, such as different wording on the error messages, or the column names being incorrect while the data itself is correct.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant