Skip to content

[auto-bump] [no-release-notes] dependency by tbantle22#2445

Closed
coffeegoddd wants to merge 1 commit intomainfrom
tbantle22-559cbc5b
Closed

[auto-bump] [no-release-notes] dependency by tbantle22#2445
coffeegoddd wants to merge 1 commit intomainfrom
tbantle22-559cbc5b

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

Main PR
covering_index_scan_postgres 603.22/s 584.18/s -3.2%
index_join_postgres 127.51/s 126.64/s -0.7%
index_join_scan_postgres 171.62/s 177.14/s +3.2%
index_scan_postgres 10.89/s 11.04/s +1.3%
oltp_point_select 2366.51/s 2348.87/s -0.8%
oltp_read_only 1666.63/s 1681.42/s +0.8%
select_random_points 105.44/s 108.12/s +2.5%
select_random_ranges 454.44/s 447.99/s -1.5%
table_scan_postgres 10.65/s 10.80/s +1.4%
types_table_scan_postgres 4.88/s 4.99/s +2.2%

@github-actions
Copy link
Copy Markdown
Contributor

Main PR
Total 42090 42090
Successful 17664 17613
Failures 24426 24477
Partial Successes1 5575 5565
Main PR
Successful 41.9672% 41.8460%
Failures 58.0328% 58.1540%

${\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

This PR has been superseded by #2446

@github-actions github-actions bot closed this Mar 11, 2026
@Hydrocharged Hydrocharged deleted the tbantle22-559cbc5b branch March 24, 2026 11:00
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