mirror of https://github.com/citusdata/citus.git
Merge branch 'main' into gokhangulbiz/tenant-stats-perf-improvements
commit
301c258849
|
@ -309,3 +309,6 @@ s/(NOTICE: issuing SET LOCAL application_name TO 'citus_rebalancer gpid=)[0-9]+
|
|||
s/improvement of 0.1[0-9]* is lower/improvement of 0.1xxxxx is lower/g
|
||||
# normalize tenants statistics annotations
|
||||
s/\/\*\{"tId":.*\*\///g
|
||||
|
||||
# Notice message that contains current columnar version that makes it harder to bump versions
|
||||
s/(NOTICE: issuing CREATE EXTENSION IF NOT EXISTS citus_columnar WITH SCHEMA pg_catalog VERSION )"[0-9]+\.[0-9]+-[0-9]+"/\1 "x.y-z"/
|
||||
|
|
|
@ -123,7 +123,7 @@ select relation, stripe_num, row_count, first_row_number
|
|||
select relation, stripe_num, attr_num, chunk_group_num, value_count
|
||||
from columnar.chunk
|
||||
where relation in ('no_access'::regclass, 'columnar_permissions'::regclass)
|
||||
order by relation, stripe_num;
|
||||
order by relation, stripe_num, attr_num;
|
||||
relation | stripe_num | attr_num | chunk_group_num | value_count
|
||||
---------------------------------------------------------------------
|
||||
no_access | 1 | 1 | 0 | 1
|
||||
|
|
|
@ -650,7 +650,7 @@ NOTICE: issuing BEGIN TRANSACTION ISOLATION LEVEL READ COMMITTED;SELECT assign_
|
|||
DETAIL: on server postgres@localhost:xxxxx connectionId: xxxxxxx
|
||||
NOTICE: issuing SET citus.enable_ddl_propagation TO 'off'
|
||||
DETAIL: on server postgres@localhost:xxxxx connectionId: xxxxxxx
|
||||
NOTICE: issuing CREATE EXTENSION IF NOT EXISTS citus_columnar WITH SCHEMA pg_catalog VERSION "11.3-1";
|
||||
NOTICE: issuing CREATE EXTENSION IF NOT EXISTS citus_columnar WITH SCHEMA pg_catalog VERSION "x.y-z";
|
||||
DETAIL: on server postgres@localhost:xxxxx connectionId: xxxxxxx
|
||||
NOTICE: issuing COMMIT
|
||||
DETAIL: on server postgres@localhost:xxxxx connectionId: xxxxxxx
|
||||
|
@ -658,7 +658,7 @@ NOTICE: issuing BEGIN TRANSACTION ISOLATION LEVEL READ COMMITTED;SELECT assign_
|
|||
DETAIL: on server postgres@localhost:xxxxx connectionId: xxxxxxx
|
||||
NOTICE: issuing SET citus.enable_ddl_propagation TO 'off'
|
||||
DETAIL: on server postgres@localhost:xxxxx connectionId: xxxxxxx
|
||||
NOTICE: issuing CREATE EXTENSION IF NOT EXISTS citus_columnar WITH SCHEMA pg_catalog VERSION "11.3-1";
|
||||
NOTICE: issuing CREATE EXTENSION IF NOT EXISTS citus_columnar WITH SCHEMA pg_catalog VERSION "x.y-z";
|
||||
DETAIL: on server postgres@localhost:xxxxx connectionId: xxxxxxx
|
||||
NOTICE: issuing COMMIT
|
||||
DETAIL: on server postgres@localhost:xxxxx connectionId: xxxxxxx
|
||||
|
|
|
@ -75,7 +75,7 @@ select relation, stripe_num, row_count, first_row_number
|
|||
select relation, stripe_num, attr_num, chunk_group_num, value_count
|
||||
from columnar.chunk
|
||||
where relation in ('no_access'::regclass, 'columnar_permissions'::regclass)
|
||||
order by relation, stripe_num;
|
||||
order by relation, stripe_num, attr_num;
|
||||
select relation, stripe_num, chunk_group_num, row_count
|
||||
from columnar.chunk_group
|
||||
where relation in ('no_access'::regclass, 'columnar_permissions'::regclass)
|
||||
|
|
Loading…
Reference in New Issue