Skip to content

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

Closed
coffeegoddd wants to merge 1 commit intomainfrom
reltuk-dd0bfe3a
Closed

[auto-bump] [no-release-notes] dependency by reltuk#2589
coffeegoddd wants to merge 1 commit intomainfrom
reltuk-dd0bfe3a

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 1428.36/s 1417.88/s -0.8%
index_join_postgres 206.24/s 206.71/s +0.2%
index_join_scan_postgres 252.38/s 254.37/s +0.7%
index_scan_postgres 15.53/s 15.64/s +0.7%
oltp_point_select 3156.52/s 3161.11/s +0.1%
oltp_read_only 2368.47/s 2363.99/s -0.2%
select_random_points 161.70/s 162.37/s +0.4%
select_random_ranges 1066.65/s 1075.41/s +0.8%
table_scan_postgres 15.13/s 15.08/s -0.4%
types_table_scan_postgres 6.97/s 7.01/s +0.5%

@github-actions
Copy link
Copy Markdown
Contributor

Main PR
Total 42090 42090
Successful 17809 17879
Failures 24281 24211
Partial Successes1 5626 5628
Main PR
Successful 42.3117% 42.4780%
Failures 57.6883% 57.5220%

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

domain

QUERY: SELECT pol.polname, pol.polpermissive,
  CASE WHEN pol.polroles = '{0}' THEN NULL ELSE pg_catalog.array_to_string(array(select rolname from pg_catalog.pg_roles where oid = any (pol.polroles) order by 1),',') END,
  pg_catalog.pg_get_expr(pol.polqual, pol.polrelid),
  pg_catalog.pg_get_expr(pol.polwithcheck, pol.polrelid),
  CASE pol.polcmd
    WHEN 'r' THEN 'SELECT'
    WHEN 'a' THEN 'INSERT'
    WHEN 'w' THEN 'UPDATE'
    WHEN 'd' THEN 'DELETE'
    END AS cmd
FROM pg_catalog.pg_policy pol
WHERE pol.polrelid = '158879' ORDER BY 1;
QUERY: SELECT oid, stxrelid::pg_catalog.regclass, stxnamespace::pg_catalog.regnamespace::pg_catalog.text AS nsp, stxname,
pg_catalog.pg_get_statisticsobjdef_columns(oid) AS columns,
  'd' = any(stxkind) AS ndist_enabled,
  'f' = any(stxkind) AS deps_enabled,
  'm' = any(stxkind) AS mcv_enabled,
stxstattarget
FROM pg_catalog.pg_statistic_ext
WHERE stxrelid = '158879'
ORDER BY nsp, stxname;
QUERY: SELECT c.oid::pg_catalog.regclass
FROM pg_catalog.pg_class c, pg_catalog.pg_inherits i
WHERE c.oid = i.inhparent AND i.inhrelid = '158879'
  AND c.relkind != 'p' AND c.relkind != 'I'
ORDER BY inhseqno;
QUERY: SELECT c.oid::pg_catalog.regclass, c.relkind, inhdetachpending, pg_catalog.pg_get_expr(c.relpartbound, c.oid)
FROM pg_catalog.pg_class c, pg_catalog.pg_inherits i
WHERE c.oid = i.inhrelid AND i.inhparent = '158879'
ORDER BY pg_catalog.pg_get_expr(c.relpartbound, c.oid) = 'DEFAULT', c.oid::pg_catalog.regclass::pg_catalog.text;
QUERY: create function makedcomp(r float8, i float8) returns dcomptype
as 'select row(r, i)' language sql;
QUERY: drop function makedcomp(float8, float8);
QUERY: drop table dcomptable;
QUERY: comment on constraint c1 on domain dcomptype is 'random commentary';
QUERY: create domain dcomptypea as comptype[];
QUERY: create table dcomptable (d1 dcomptypea unique);
QUERY: SELECT pol.polname, pol.polpermissive,
  CASE WHEN pol.polroles = '{0}' THEN NULL ELSE pg_catalog.array_to_string(array(select rolname from pg_catalog.pg_roles where oid = any (pol.polroles) order by 1),',') END,
  pg_catalog.pg_get_expr(pol.polqual, pol.polrelid),
  pg_catalog.pg_get_expr(pol.polwithcheck, pol.polrelid),
  CASE pol.polcmd
    WHEN 'r' THEN 'SELECT'
    WHEN 'a' THEN 'INSERT'
    WHEN 'w' THEN 'UPDATE'
    WHEN 'd' THEN 'DELETE'
    END AS cmd
FROM pg_catalog.pg_policy pol
WHERE pol.polrelid = '158902' ORDER BY 1;
QUERY: SELECT oid, stxrelid::pg_catalog.regclass, stxnamespace::pg_catalog.regnamespace::pg_catalog.text AS nsp, stxname,
pg_catalog.pg_get_statisticsobjdef_columns(oid) AS columns,
  'd' = any(stxkind) AS ndist_enabled,
  'f' = any(stxkind) AS deps_enabled,
  'm' = any(stxkind) AS mcv_enabled,
stxstattarget
FROM pg_catalog.pg_statistic_ext
WHERE stxrelid = '158902'
ORDER BY nsp, stxname;
QUERY: SELECT c.oid::pg_catalog.regclass
FROM pg_catalog.pg_class c, pg_catalog.pg_inherits i
WHERE c.oid = i.inhparent AND i.inhrelid = '158902'
  AND c.relkind != 'p' AND c.relkind != 'I'
ORDER BY inhseqno;
QUERY: SELECT c.oid::pg_catalog.regclass, c.relkind, inhdetachpending, pg_catalog.pg_get_expr(c.relpartbound, c.oid)
FROM pg_catalog.pg_class c, pg_catalog.pg_inherits i
WHERE c.oid = i.inhrelid AND i.inhparent = '158902'
ORDER BY pg_catalog.pg_get_expr(c.relpartbound, c.oid) = 'DEFAULT', c.oid::pg_catalog.regclass::pg_catalog.text;
QUERY: drop table dcomptable;
QUERY: create domain posint as int check (value > 0);
QUERY: create table pitable (f1 posint[]);
QUERY: drop table pitable;
QUERY: create domain vc4 as varchar(4);
QUERY: create table vc4table (f1 vc4[]);
QUERY: insert into vc4table values(array['too long']::vc4[]);
QUERY: drop table vc4table;
QUERY: drop type vc4;
QUERY: create domain dposinta as posint[];
QUERY: create table dposintatable (f1 dposinta[]);
QUERY: drop table dposintatable;
QUERY: create table dcomptable (f1 dcomptype[]);
QUERY: drop table dcomptable;
QUERY: create domain dnotnull varchar(15) NOT NULL;
QUERY: create domain dnull    varchar(15);
QUERY: create domain dcheck   varchar(15) NOT NULL CHECK (VALUE = 'a' OR VALUE = 'c' OR VALUE = 'd');
QUERY: SELECT cast('1' as dnotnull);
QUERY: drop domain dnotnull restrict;
QUERY: drop domain dnull restrict;
QUERY: drop domain dcheck restrict;
QUERY: create domain ddef1 int4 DEFAULT 3;
QUERY: create domain ddef2 oid DEFAULT '12';
QUERY: create domain ddef3 text DEFAULT 5;
QUERY: create sequence ddef4_seq;
QUERY: create domain ddef4 int4 DEFAULT nextval('ddef4_seq');

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.

@fulghum fulghum closed this Apr 15, 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.

3 participants