Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

servercfg: Add always-disabled AutoGCConfig to get doltgresql compiling. #1219

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

reltuk
Copy link
Contributor

@reltuk reltuk commented Feb 22, 2025

Goes with dolthub/dolt#8849, which adds a config stanza like:

behavior:
  auto_gc_behavior:
    enable: true

for now, this just gets doltgresql compiling and always disables auto_gc.

Copy link
Contributor

Main PR
covering_index_scan_postgres 363.68/s 344.26/s -5.4%
index_join_postgres 152.03/s 152.04/s 0.0%
index_join_scan_postgres 180.97/s 182.55/s +0.8%
index_scan_postgres 12.28/s 12.34/s +0.4%
oltp_point_select 2666.79/s 2698.96/s +1.2%
oltp_read_only 1829.47/s 1818.34/s -0.7%
select_random_points 111.51/s 111.28/s -0.3%
select_random_ranges 128.63/s 125.82/s -2.2%
table_scan_postgres 11.10/s 11.04/s -0.6%
types_table_scan_postgres 5.45/s 5.58/s +2.3%

Copy link
Contributor

Main PR
Total 42090 42090
Successful 15654 15657
Failures 26436 26433
Partial Successes1 5212 5213
Main PR
Successful 37.1917% 37.1989%
Failures 62.8083% 62.8011%

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

domain

QUERY: select '{1,2,3}'::dia;

with

QUERY: SELECT count(*) FROM (
    WITH RECURSIVE t(n) AS (
        SELECT 1 UNION ALL SELECT n + 1 FROM t WHERE n < 500
    )
    SELECT * FROM t) AS t WHERE n < (
        SELECT count(*) FROM (
            WITH RECURSIVE t(n) AS (
                   SELECT 1 UNION ALL SELECT n + 1 FROM t WHERE n < 100
                )
            SELECT * FROM t WHERE n < 50000
         ) AS t WHERE n < 100);
QUERY: WITH RECURSIVE
   x(id) AS
     (VALUES (1) UNION ALL SELECT id+1 FROM x WHERE id < 5),
   y(id) AS
     (VALUES (1) UNION ALL SELECT id+1 FROM x WHERE id < 10)
 SELECT y.*, x.* FROM y LEFT JOIN x USING (id);

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
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant