Skip to content

[auto-bump] [no-release-notes] dependency by reltuk#2550

Closed
coffeegoddd wants to merge 1 commit intomainfrom
reltuk-7e74e06b
Closed

[auto-bump] [no-release-notes] dependency by reltuk#2550
coffeegoddd wants to merge 1 commit intomainfrom
reltuk-7e74e06b

Conversation

@coffeegoddd
Copy link
Copy Markdown
Contributor

An Automated Dependency Version Bump PR 👑

Initial Changes

The changes contained in this PR were produced by `go get`ing the dependency.

```bash
go get github.com/dolthub/[dependency]/go@[commit]
```

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 6, 2026

Main PR
covering_index_scan_postgres 1182.78/s 1184.88/s +0.1%
index_join_postgres 204.79/s 201.92/s -1.5%
index_join_scan_postgres 278.84/s 281.09/s +0.8%
index_scan_postgres 14.64/s 14.57/s -0.5%
oltp_point_select 2821.13/s 2827.84/s +0.2%
oltp_read_only 2213.33/s 2212.28/s -0.1%
select_random_points 174.50/s 175.06/s +0.3%
select_random_ranges 885.07/s 874.27/s -1.3%
table_scan_postgres 14.27/s 14.36/s +0.6%
types_table_scan_postgres 6.51/s 6.46/s -0.8%

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 6, 2026

Main PR
Total 42090 42090
Successful 17903 17852
Failures 24187 24238
Partial Successes1 5573 5563
Main PR
Successful 42.5350% 42.4139%
Failures 57.4650% 57.5861%

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

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.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 6, 2026

This PR has been superseded by #2552

@github-actions github-actions bot closed this Apr 6, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants