Skip to content

[auto-bump] [no-release-notes] dependency by zachmu#2598

Open
coffeegoddd wants to merge 1 commit intomainfrom
zachmu-b7f5fc4e
Open

[auto-bump] [no-release-notes] dependency by zachmu#2598
coffeegoddd wants to merge 1 commit intomainfrom
zachmu-b7f5fc4e

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 1136.52/s 1104.04/s -2.9%
index_join_postgres 159.92/s 160.73/s +0.5%
index_join_scan_postgres 205.97/s 207.77/s +0.8%
index_scan_postgres 12.15/s 12.00/s -1.3%
oltp_point_select 2410.96/s 2397.85/s -0.6%
oltp_read_only 1871.62/s 1863.23/s -0.5%
select_random_points 129.61/s 128.73/s -0.7%
select_random_ranges 824.93/s 825.99/s +0.1%
table_scan_postgres 11.83/s 11.86/s +0.2%
types_table_scan_postgres 5.42/s 5.47/s +0.9%

@github-actions
Copy link
Copy Markdown
Contributor

Main PR
Total 42090 42090
Successful 17861 17929
Failures 24229 24161
Partial Successes1 5636 5638
Main PR
Successful 42.4353% 42.5968%
Failures 57.5647% 57.4032%

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

random

QUERY:          (SELECT unique1 AS random
  FROM onek ORDER BY random() LIMIT 1)
INTERSECT
(SELECT unique1 AS random
  FROM onek ORDER BY random() LIMIT 1)
INTERSECT
(SELECT unique1 AS random
  FROM onek ORDER BY random() LIMIT 1);
RECEIVED ERROR: expected row count 0 but received 1

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

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.

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