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

feat: introduce the framework of sqlsmith #3305

Merged
merged 21 commits into from
Jun 20, 2022
Merged

feat: introduce the framework of sqlsmith #3305

merged 21 commits into from
Jun 20, 2022

Conversation

neverchanje
Copy link
Contributor

@neverchanje neverchanje commented Jun 17, 2022

What's changed and what's your intention?

The example sqlsmith-generated SQL:

SELECT TIMESTAMP '2022-06-10 23:20:03' AS col_0, SMALLINT '1' AS col_1, FLOAT '14.00766166396339' AS col_2, 56.34405973613994 AS col_3 FROM partsupp AS t0, region AS t1 WHERE t0.ps_supplycost <= (((76 - (37 % SMALLINT '92')) >> INT '53') << (SMALLINT '77' # ((SMALLINT '6' << SMALLINT '87') << (((SMALLINT '11' # SMALLINT '68') << (SMALLINT '1' - (SMALLINT '63' * INT '5'))) >> (t0.ps_suppkey >> (SMALLINT '48' % SMALLINT '41')))))) LIMIT 14
SELECT DATE '2022-06-13' + (INT '6' % (((((SMALLINT '27' # SMALLINT '32') | SMALLINT '22') >> SMALLINT '24') # SMALLINT '87') / SMALLINT '63')) AS col_0, TIMESTAMP '2022-06-17 09:10:38' AS col_1, REAL '67.34746316318869' AS col_2, (INTERVAL '798279' * ((t2.c_custkey << (SMALLINT '91' << INT '24')) >> SMALLINT '41')) < (t3.l_discount * INTERVAL '906922') AS col_3 FROM nation AS t0, lineitem AS t1, customer AS t2, lineitem AS t3, customer AS t4 WHERE false
SELECT t2.c_acctbal AS col_0, (INTERVAL '323373' / FLOAT '71.77997231857036') + ((((INTERVAL '118695' + TIMESTAMP '2022-06-10 12:07:08') + INTERVAL '900004') - INTERVAL '379835') - (FLOAT '66.82124471287459' * INTERVAL '761419')) AS col_1 FROM part AS t0, supplier AS t1, customer AS t2 LIMIT 47
SELECT REAL '36.66525673061021' + ((t0.l_linenumber << SMALLINT '65') / (round(22.502892250863237, INT '4') / SMALLINT '30')) AS col_0 FROM lineitem AS t0, lineitem AS t1 WHERE (SMALLINT '19' & SMALLINT '91') > (9 + FLOAT '50.10338423028955')
SELECT 45.92007126393105 AS col_0, (((t2.c_acctbal * ((((29.32164110038171 + REAL '66.15275368873897') + t1.p_retailprice) * round(38.99341338293072, t0.s_nationkey)) + 32)) + 67.46192340702622) + t4.c_acctbal) / (REAL '17.611260215308167' + (((SMALLINT '59' & SMALLINT '2') / (SMALLINT '21' * SMALLINT '31')) * SMALLINT '1')) AS col_1, 31 >> (SMALLINT '8' - SMALLINT '18') AS col_2 FROM supplier AS t0, part AS t1, customer AS t2, region AS t3, customer AS t4 WHERE false

Additionally, this PR implements a CLI tool sqlsmith so that we can test queries end to end. The typical panics are caused by the inconsistency of exprs between frontend and compute. Some unsupported exprs are actually passed to the computes.

cargo build
RUST_LOG=INFO ./target/debug/sqlsmith --testdata ./src/tests/sqlsmith/tests/testdata

Currently, this tool doesn't support randomizing the GROUP BY clause or JOIN, etc. Also it only runs against the optimizer. The plan is to fully construct more complex SELECT queries, CREATE MATERIALIZED VIEW queries.

Checklist

  • I have written necessary docs and comments
  • I have added necessary unit tests and integration tests
  • All checks passed in ./risedev check (or alias, ./risedev c)

Refer to a related PR or issue link (optional)

#2571

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

license-eye has totally checked 853 files.

Valid Invalid Ignored Fixed
849 3 1 0
Click to see the invalid file list
  • src/tests/sqlsmith/src/expr.rs
  • src/tests/sqlsmith/src/lib.rs
  • src/tests/sqlsmith/src/test_runner.rs

src/tests/sqlsmith/src/expr.rs Show resolved Hide resolved
src/tests/sqlsmith/src/lib.rs Show resolved Hide resolved
src/tests/sqlsmith/src/test_runner.rs Outdated Show resolved Hide resolved
@neverchanje neverchanje changed the title feat: add the framework of sqlsmith feat: introduce the framework of sqlsmith Jun 17, 2022
@codecov
Copy link

codecov bot commented Jun 17, 2022

Codecov Report

Merging #3305 (eefb18a) into main (daf9222) will increase coverage by 0.05%.
The diff coverage is 78.26%.

@@            Coverage Diff             @@
##             main    #3305      +/-   ##
==========================================
+ Coverage   73.18%   73.23%   +0.05%     
==========================================
  Files         755      756       +1     
  Lines      102431   102476      +45     
==========================================
+ Hits        74963    75051      +88     
+ Misses      27468    27425      -43     
Flag Coverage Δ
rust 73.23% <78.26%> (+0.05%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
src/frontend/src/binder/mod.rs 100.00% <ø> (ø)
src/frontend/src/expr/mod.rs 87.09% <ø> (ø)
src/sqlparser/test_runner/src/lib.rs 64.78% <ø> (ø)
src/frontend/src/session.rs 41.46% <15.38%> (-0.48%) ⬇️
src/tests/sqlsmith/src/expr.rs 89.47% <87.50%> (ø)
src/sqlparser/src/ast/mod.rs 88.75% <92.85%> (+0.05%) ⬆️
src/frontend/src/expr/type_inference/mod.rs 95.45% <95.00%> (+0.71%) ⬆️
src/frontend/src/expr/type_inference/cast.rs 100.00% <100.00%> (ø)
src/frontend/src/expr/type_inference/func.rs 99.47% <100.00%> (+0.79%) ⬆️
... and 8 more

📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more

@liurenjie1024
Copy link
Contributor

Nice PR. I think the next step is to run sqls and compare it with postgresql?

@neverchanje
Copy link
Contributor Author

Nice PR. I think the next step is to run sqls and compare it with postgresql?

No I personally do not want to use sqlsmith for verifying correctness. It was also stated in the blog written by cockroach team, https://www.cockroachlabs.com/blog/sqlsmith-randomized-sql-testing/

This kind of fuzz testing is not able to deduce correctness. Today, its goal is limited to finding panics, which it’s quite good at. Correctness is difficult because we don’t have any oracle of truth, which would require a known working SQL engine, which is exactly the thing we’re trying to break. We are unable to use Postgres as an oracle because CockroachDB has slightly different semantics and SQL support, and generating queries that execute identically on both is tricky and doesn’t allow us to use the full CockroachDB grammar.

For example, we can not test the correctness of HOP/TUMBLE against Postgres. It's unsupported there. Our goal is to find panics inside our system. At least to ensure no sql would cause any panic.

Copy link
Contributor

@liurenjie1024 liurenjie1024 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Generally LGTM.

@neverchanje neverchanje merged commit 9f18401 into main Jun 20, 2022
@neverchanje neverchanje deleted the wt-array-access branch June 20, 2022 09:47
Little-Wallace added a commit that referenced this pull request Jun 21, 2022
commit 309ce36
Author: Bowen <36908971+BowenXiao1999@users.noreply.github.com>
Date:   Tue Jun 21 13:19:44 2022 +0800

    refactor(agg): clean up unused fields & refactor (#3339)

    * refactor(agg): clean up unused fields

    * delete file

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit e48dced
Author: Shmiwy <wyf000219@126.com>
Date:   Tue Jun 21 12:55:21 2022 +0800

    feat(storage): support compression setting per level (#3362)

    Signed-off-by: Shmiwy <wyf000219@126.com>

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 961936f
Author: Alex Chi <iskyzh@gmail.com>
Date:   Tue Jun 21 12:42:45 2022 +0800

    feat(test): parallelize sqlsmith test (#3360)

    * feat(test): parallelize sqlsmith test

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

    * more tests

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit fa90541
Author: TennyZhuang <zty0826@gmail.com>
Date:   Tue Jun 21 12:25:33 2022 +0800

    chore(github): feature-request template should use the feature label (#3359)

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 02405e1
Author: Bowen <36908971+BowenXiao1999@users.noreply.github.com>
Date:   Tue Jun 21 12:13:07 2022 +0800

    style: add more comments & refactor on pg-wire  (#3358)

    style: add more comments on pg-wire code

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 1c09432
Author: Li0k <yuli@singularity-data.com>
Date:   Tue Jun 21 12:00:37 2022 +0800

    fix(storage): fix slow unit-test in compactor_test (#3357)

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 19036a6
Author: xxchan <37948597+xxchan@users.noreply.github.com>
Date:   Tue Jun 21 05:48:08 2022 +0200

    fix(binder): do not allow correlated subquery in join tables (#3352)

    * fix(binder): do not allow correlated subquery in join tables

    * clippy

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit c37c9c4
Author: TennyZhuang <zty0826@gmail.com>
Date:   Tue Jun 21 11:24:40 2022 +0800

    refactor: remove unnecessary lazy_static (#3353)

    Signed-off-by: TennyZhuang <zty0826@gmail.com>

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 68596ab
Author: Croxx <mrcroxx@outlook.com>
Date:   Tue Jun 21 11:11:53 2022 +0800

    feat(cache): introduce LruCacheEventListener to subscribe erasure and eviction (#3334)

commit 5627f25
Author: Steven Chua <stevengkc714@protonmail.com>
Date:   Tue Jun 21 10:54:12 2022 +0800

    feat(ctl): Display SstableIdInfo and Block Metadata in sst-dump (#3338)

    * feat(ctl): Add sst-dump command to risectl

    * feat(ctl): Fix risectl compatibility and remove VNode info

    * feat(ctl): Add checksum and compression algo for each block

    * feat(ctl): Add SstableIdInfo data to sst-dump

    * feat(ctl): Fix compilation errors

    * feat(ctl): Fix compilation errors and bugs

commit 16ffd98
Author: Name1e5s <name1e5s@qq.com>
Date:   Tue Jun 21 10:50:33 2022 +0800

    fix(expr): cast int16/int32/int64/float32 to float64 in floor/ceil/round (#3319)

    * fix(expr): cast int16/int32/int64/float32 to float64 in floor/ceil/round

    * fix plan

    Co-authored-by: TennyZhuang <zty0826@gmail.com>

commit 964bb92
Author: TennyZhuang <zty0826@gmail.com>
Date:   Tue Jun 21 10:23:56 2022 +0800

    ci(Mergify): configuration update (#3355)

    Signed-off-by: null <zty0826@gmail.com>

commit dac904e
Author: jon-chuang <9093549+jon-chuang@users.noreply.github.com>
Date:   Tue Jun 21 09:57:33 2022 +0800

    feat(executor): streaming hyperloglog improvements (#3315)

    * minor

    * rename tests

    * minor

    * remove option, const eval of param, better comments, succint tests

commit cd4f302
Author: TennyZhuang <zty0826@gmail.com>
Date:   Tue Jun 21 09:34:54 2022 +0800

    ci(Mergify): configuration update (#3252)

    * ci(Mergify): configuration update

    Signed-off-by: null <zty0826@gmail.com>

    * Update .mergify.yml

    * Update .mergify.yml

    * Update .mergify.yml

    Co-authored-by: xxchan <37948597+xxchan@users.noreply.github.com>

commit 2aa7e8e
Author: Xinpeng Wei <windowsxp@sjtu.edu.cn>
Date:   Mon Jun 20 22:11:51 2022 +0800

    feat(frontend): add InternalStateTable Catalog (#3139)

    * use TableMessage for internal table

    * fix risedev check

    * update planner test

    * fix unit test

    * fix misc check

    * fix ci

    * fix issues in PR comments

    * fix clippy

    * fix ci

    * update planner test

commit 1e190dd
Author: xxchan <37948597+xxchan@users.noreply.github.com>
Date:   Mon Jun 20 14:16:12 2022 +0200

    fix(binder): do not allow correlated input ref in order by (#3346)

commit 263d770
Author: Tao Wu <wutao@singularity-data.com>
Date:   Mon Jun 20 18:54:25 2022 +0800

    fix: build failure caused by OptimzierContext::new (#3340)

commit 9f18401
Author: Tao Wu <wutao@singularity-data.com>
Date:   Mon Jun 20 17:47:22 2022 +0800

    feat: introduce the framework of sqlsmith (#3305)

commit 096a991
Author: Alex Chi <iskyzh@gmail.com>
Date:   Mon Jun 20 17:40:05 2022 +0800

    feat(ctl): add bench command (#3337)

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

commit 075d596
Author: TennyZhuang <zty0826@gmail.com>
Date:   Mon Jun 20 17:05:50 2022 +0800

    build: bump toolchain to 20220620 (#3324)

    * build: bump toolchain to 20220620

    Signed-off-by: TennyZhuang <zty0826@gmail.com>

    * also update docker-compose

    Signed-off-by: TennyZhuang <zty0826@gmail.com>

commit d864f30
Author: Wenzhuo Liu <lwzbill@foxmail.com>
Date:   Mon Jun 20 16:38:21 2022 +0800

    feat: add output_indices to join executors (#3047)

commit 13b9d58
Author: StrikeW <wangsiyuanse@gmail.com>
Date:   Mon Jun 20 16:29:56 2022 +0800

    feat(stream): enable append-only mv plan for kafka source (#3333)

commit ea386d3
Author: Liang <44948473+soundOfDestiny@users.noreply.github.com>
Date:   Mon Jun 20 15:50:55 2022 +0800

    refactor(compaction): deprecate the HashStrategy for OverlapStrategy (#3331)

commit a9fba38
Author: Liang <44948473+soundOfDestiny@users.noreply.github.com>
Date:   Mon Jun 20 15:34:25 2022 +0800

    fix(picker): fetch info from table_id field in sstableinfo (#3332)

commit 5d2bb42
Author: Bohan Zhang <tabvision@bupt.icu>
Date:   Mon Jun 20 14:55:59 2022 +0800

    test(stream): add ci for split change mutation in source (#3039)

    * stage

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * stage

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * add test

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * change e2e to datagen

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * stage

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * some bug to fix

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * fix async issue

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * add assert

    Signed-off-by: tabVersion <tabvision@bupt.icu>

commit 04fe6d6
Author: Liang <44948473+soundOfDestiny@users.noreply.github.com>
Date:   Mon Jun 20 14:47:56 2022 +0800

    refactor(vnode bitmap): remove vnode bitmap in sst info (#3329)

commit c6d1288
Author: Li0k <yuli@singularity-data.com>
Date:   Mon Jun 20 14:29:56 2022 +0800

    feat(storage): add manual compaction picker for targeted compaction (#3288)

    * feat(storage): add ManualCompactionPicker

    * feat(storage): distinguish get_compaction_task for manual

    * feat(storage): meta client support more parameters for manual_compaction

    * chore(storage): add tracing and some notes

    * chore(storage): split manual_compaction_picker to independent file

    * feat(storage): fix target_input check pending and support manual_pick for dynamic_level_selector

    * fix(storage): internal_table_id include mv_id

    * fix(storage): fix picker check target_input_ssts pending

    * fix(storage): fix picker with total_file_size

commit d04954f
Author: Renjie Liu <liurenjie2008@gmail.com>
Date:   Mon Jun 20 14:27:01 2022 +0800

    fix(ci): Reduce log (#3330)

commit eca9239
Author: Bugen Zhao <i@bugenzhao.com>
Date:   Mon Jun 20 13:59:56 2022 +0800

    refactor(storage): remove `Option` on pk serializer of cell-based table (#3328)

    * minor refactor

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * remove option of pk serializer

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * remove pk serializer in state table

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * extract vnode compute

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * remove into order types

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

commit 9169436
Author: Bowen <36908971+BowenXiao1999@users.noreply.github.com>
Date:   Mon Jun 20 13:44:10 2022 +0800

    feat: apply relational refactor for hash agg (max, min) (#2999)

    * feat: two closure can not get mut ref of same variable

    * use Arc::Mutex to wrap the state table

    * roll back string agg

    * add StateTable to get_output

    * finish basic coding (unit test failed)

    * finish basic coding

    * fix bug

    * show case

    * use empty Row for scan

    * tweak

commit 35bb16a
Author: Bugen Zhao <i@bugenzhao.com>
Date:   Mon Jun 20 13:43:11 2022 +0800

    refactor: use packed bitmap struct for vnode bitmap (#3310)

    * use bitmap in streaming

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * use bitmap in storage

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * minor fix

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * make bitmap optional

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

commit be50f93
Author: Liang <44948473+soundOfDestiny@users.noreply.github.com>
Date:   Mon Jun 20 13:27:37 2022 +0800

    feat(compaction): let compactor be unaware of vnode mapping (#3321)

commit 88258a6
Author: lmatz <lmatz823@gmail.com>
Date:   Sun Jun 19 21:31:01 2022 -0700

    doc: no need to manually check in PR from forks (#3325)

commit c590e18
Author: zwang28 <70626450+zwang28@users.noreply.github.com>
Date:   Mon Jun 20 12:13:50 2022 +0800

    refactor(storage): split HummockVersion's levels by compaction group. (#3206)

commit f1c3298
Author: zwang28 <70626450+zwang28@users.noreply.github.com>
Date:   Mon Jun 20 11:35:18 2022 +0800

    feat(meta): register source to compaction group manager (#3300)

commit bf08b54
Author: Zack <52342064+nhzaci@users.noreply.github.com>
Date:   Mon Jun 20 11:25:39 2022 +0800

    feat(frontend): Add sql string into context for debugging (#3312)

    * feat(frontend): Add sql string into context for debugging

    * Remove renaming

    * Refactor to use str

commit f784ba3
Author: zwang28 <70626450+zwang28@users.noreply.github.com>
Date:   Mon Jun 20 11:22:12 2022 +0800

    feat(storage): shared buffer flush L0 by compaction group (#3200)

commit bd48bba
Author: Kexiang Wang <kx.wang@hotmail.com>
Date:   Sun Jun 19 07:48:45 2022 -0400

    feat: modify interfaces to support specifying parallelism for each fr… (#3283)

    feat: modify interfaces to support specifying parallelism for each fragment

commit 8f0e0b2
Author: Steven Chua <stevengkc714@protonmail.com>
Date:   Sun Jun 19 12:56:51 2022 +0800

    feat(ctl): Support basic sst dump in risectl (#3309)

    * feat(ctl): Add sst-dump command to risectl

    * feat(ctl): Fix risectl compatibility and remove VNode info

commit daf9222
Author: Alex Chi <iskyzh@gmail.com>
Date:   Sat Jun 18 21:41:44 2022 +0800

    feat(risedev): generate risectl config (#3318)

    * feat(risedev): generate risectl config

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

    * fix

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

commit 86ff992
Author: Alex Chi <iskyzh@gmail.com>
Date:   Sat Jun 18 20:52:51 2022 +0800

    feat(ctl): support table scan (#3317)

    * feat(ctl): support table scan

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

    * license header

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

    * add docs

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

commit 5ac5637
Author: Yikun Chen <36026213+cykbls01@users.noreply.github.com>
Date:   Sat Jun 18 08:03:06 2022 -0400

    feat: support interval comparison (#3222)

    1. fix timestamp substract timestamp.
    2. support interval comparison. From pgsql, 1 month equal to 30 days and 1 day equal to 86400000 ms.

Signed-off-by: Little-Wallace <bupt2013211450@gmail.com>
Little-Wallace added a commit to Little-Wallace/risingwave that referenced this pull request Jun 21, 2022
commit 309ce36
Author: Bowen <36908971+BowenXiao1999@users.noreply.github.com>
Date:   Tue Jun 21 13:19:44 2022 +0800

    refactor(agg): clean up unused fields & refactor (risingwavelabs#3339)

    * refactor(agg): clean up unused fields

    * delete file

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit e48dced
Author: Shmiwy <wyf000219@126.com>
Date:   Tue Jun 21 12:55:21 2022 +0800

    feat(storage): support compression setting per level (risingwavelabs#3362)

    Signed-off-by: Shmiwy <wyf000219@126.com>

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 961936f
Author: Alex Chi <iskyzh@gmail.com>
Date:   Tue Jun 21 12:42:45 2022 +0800

    feat(test): parallelize sqlsmith test (risingwavelabs#3360)

    * feat(test): parallelize sqlsmith test

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

    * more tests

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit fa90541
Author: TennyZhuang <zty0826@gmail.com>
Date:   Tue Jun 21 12:25:33 2022 +0800

    chore(github): feature-request template should use the feature label (risingwavelabs#3359)

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 02405e1
Author: Bowen <36908971+BowenXiao1999@users.noreply.github.com>
Date:   Tue Jun 21 12:13:07 2022 +0800

    style: add more comments & refactor on pg-wire  (risingwavelabs#3358)

    style: add more comments on pg-wire code

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 1c09432
Author: Li0k <yuli@singularity-data.com>
Date:   Tue Jun 21 12:00:37 2022 +0800

    fix(storage): fix slow unit-test in compactor_test (risingwavelabs#3357)

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 19036a6
Author: xxchan <37948597+xxchan@users.noreply.github.com>
Date:   Tue Jun 21 05:48:08 2022 +0200

    fix(binder): do not allow correlated subquery in join tables (risingwavelabs#3352)

    * fix(binder): do not allow correlated subquery in join tables

    * clippy

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit c37c9c4
Author: TennyZhuang <zty0826@gmail.com>
Date:   Tue Jun 21 11:24:40 2022 +0800

    refactor: remove unnecessary lazy_static (risingwavelabs#3353)

    Signed-off-by: TennyZhuang <zty0826@gmail.com>

    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>

commit 68596ab
Author: Croxx <mrcroxx@outlook.com>
Date:   Tue Jun 21 11:11:53 2022 +0800

    feat(cache): introduce LruCacheEventListener to subscribe erasure and eviction (risingwavelabs#3334)

commit 5627f25
Author: Steven Chua <stevengkc714@protonmail.com>
Date:   Tue Jun 21 10:54:12 2022 +0800

    feat(ctl): Display SstableIdInfo and Block Metadata in sst-dump (risingwavelabs#3338)

    * feat(ctl): Add sst-dump command to risectl

    * feat(ctl): Fix risectl compatibility and remove VNode info

    * feat(ctl): Add checksum and compression algo for each block

    * feat(ctl): Add SstableIdInfo data to sst-dump

    * feat(ctl): Fix compilation errors

    * feat(ctl): Fix compilation errors and bugs

commit 16ffd98
Author: Name1e5s <name1e5s@qq.com>
Date:   Tue Jun 21 10:50:33 2022 +0800

    fix(expr): cast int16/int32/int64/float32 to float64 in floor/ceil/round (risingwavelabs#3319)

    * fix(expr): cast int16/int32/int64/float32 to float64 in floor/ceil/round

    * fix plan

    Co-authored-by: TennyZhuang <zty0826@gmail.com>

commit 964bb92
Author: TennyZhuang <zty0826@gmail.com>
Date:   Tue Jun 21 10:23:56 2022 +0800

    ci(Mergify): configuration update (risingwavelabs#3355)

    Signed-off-by: null <zty0826@gmail.com>

commit dac904e
Author: jon-chuang <9093549+jon-chuang@users.noreply.github.com>
Date:   Tue Jun 21 09:57:33 2022 +0800

    feat(executor): streaming hyperloglog improvements (risingwavelabs#3315)

    * minor

    * rename tests

    * minor

    * remove option, const eval of param, better comments, succint tests

commit cd4f302
Author: TennyZhuang <zty0826@gmail.com>
Date:   Tue Jun 21 09:34:54 2022 +0800

    ci(Mergify): configuration update (risingwavelabs#3252)

    * ci(Mergify): configuration update

    Signed-off-by: null <zty0826@gmail.com>

    * Update .mergify.yml

    * Update .mergify.yml

    * Update .mergify.yml

    Co-authored-by: xxchan <37948597+xxchan@users.noreply.github.com>

commit 2aa7e8e
Author: Xinpeng Wei <windowsxp@sjtu.edu.cn>
Date:   Mon Jun 20 22:11:51 2022 +0800

    feat(frontend): add InternalStateTable Catalog (risingwavelabs#3139)

    * use TableMessage for internal table

    * fix risedev check

    * update planner test

    * fix unit test

    * fix misc check

    * fix ci

    * fix issues in PR comments

    * fix clippy

    * fix ci

    * update planner test

commit 1e190dd
Author: xxchan <37948597+xxchan@users.noreply.github.com>
Date:   Mon Jun 20 14:16:12 2022 +0200

    fix(binder): do not allow correlated input ref in order by (risingwavelabs#3346)

commit 263d770
Author: Tao Wu <wutao@singularity-data.com>
Date:   Mon Jun 20 18:54:25 2022 +0800

    fix: build failure caused by OptimzierContext::new (risingwavelabs#3340)

commit 9f18401
Author: Tao Wu <wutao@singularity-data.com>
Date:   Mon Jun 20 17:47:22 2022 +0800

    feat: introduce the framework of sqlsmith (risingwavelabs#3305)

commit 096a991
Author: Alex Chi <iskyzh@gmail.com>
Date:   Mon Jun 20 17:40:05 2022 +0800

    feat(ctl): add bench command (risingwavelabs#3337)

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

commit 075d596
Author: TennyZhuang <zty0826@gmail.com>
Date:   Mon Jun 20 17:05:50 2022 +0800

    build: bump toolchain to 20220620 (risingwavelabs#3324)

    * build: bump toolchain to 20220620

    Signed-off-by: TennyZhuang <zty0826@gmail.com>

    * also update docker-compose

    Signed-off-by: TennyZhuang <zty0826@gmail.com>

commit d864f30
Author: Wenzhuo Liu <lwzbill@foxmail.com>
Date:   Mon Jun 20 16:38:21 2022 +0800

    feat: add output_indices to join executors (risingwavelabs#3047)

commit 13b9d58
Author: StrikeW <wangsiyuanse@gmail.com>
Date:   Mon Jun 20 16:29:56 2022 +0800

    feat(stream): enable append-only mv plan for kafka source (risingwavelabs#3333)

commit ea386d3
Author: Liang <44948473+soundOfDestiny@users.noreply.github.com>
Date:   Mon Jun 20 15:50:55 2022 +0800

    refactor(compaction): deprecate the HashStrategy for OverlapStrategy (risingwavelabs#3331)

commit a9fba38
Author: Liang <44948473+soundOfDestiny@users.noreply.github.com>
Date:   Mon Jun 20 15:34:25 2022 +0800

    fix(picker): fetch info from table_id field in sstableinfo (risingwavelabs#3332)

commit 5d2bb42
Author: Bohan Zhang <tabvision@bupt.icu>
Date:   Mon Jun 20 14:55:59 2022 +0800

    test(stream): add ci for split change mutation in source (risingwavelabs#3039)

    * stage

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * stage

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * add test

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * change e2e to datagen

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * stage

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * some bug to fix

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * fix async issue

    Signed-off-by: tabVersion <tabvision@bupt.icu>

    * add assert

    Signed-off-by: tabVersion <tabvision@bupt.icu>

commit 04fe6d6
Author: Liang <44948473+soundOfDestiny@users.noreply.github.com>
Date:   Mon Jun 20 14:47:56 2022 +0800

    refactor(vnode bitmap): remove vnode bitmap in sst info (risingwavelabs#3329)

commit c6d1288
Author: Li0k <yuli@singularity-data.com>
Date:   Mon Jun 20 14:29:56 2022 +0800

    feat(storage): add manual compaction picker for targeted compaction (risingwavelabs#3288)

    * feat(storage): add ManualCompactionPicker

    * feat(storage): distinguish get_compaction_task for manual

    * feat(storage): meta client support more parameters for manual_compaction

    * chore(storage): add tracing and some notes

    * chore(storage): split manual_compaction_picker to independent file

    * feat(storage): fix target_input check pending and support manual_pick for dynamic_level_selector

    * fix(storage): internal_table_id include mv_id

    * fix(storage): fix picker check target_input_ssts pending

    * fix(storage): fix picker with total_file_size

commit d04954f
Author: Renjie Liu <liurenjie2008@gmail.com>
Date:   Mon Jun 20 14:27:01 2022 +0800

    fix(ci): Reduce log (risingwavelabs#3330)

commit eca9239
Author: Bugen Zhao <i@bugenzhao.com>
Date:   Mon Jun 20 13:59:56 2022 +0800

    refactor(storage): remove `Option` on pk serializer of cell-based table (risingwavelabs#3328)

    * minor refactor

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * remove option of pk serializer

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * remove pk serializer in state table

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * extract vnode compute

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * remove into order types

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

commit 9169436
Author: Bowen <36908971+BowenXiao1999@users.noreply.github.com>
Date:   Mon Jun 20 13:44:10 2022 +0800

    feat: apply relational refactor for hash agg (max, min) (risingwavelabs#2999)

    * feat: two closure can not get mut ref of same variable

    * use Arc::Mutex to wrap the state table

    * roll back string agg

    * add StateTable to get_output

    * finish basic coding (unit test failed)

    * finish basic coding

    * fix bug

    * show case

    * use empty Row for scan

    * tweak

commit 35bb16a
Author: Bugen Zhao <i@bugenzhao.com>
Date:   Mon Jun 20 13:43:11 2022 +0800

    refactor: use packed bitmap struct for vnode bitmap (risingwavelabs#3310)

    * use bitmap in streaming

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * use bitmap in storage

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * minor fix

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

    * make bitmap optional

    Signed-off-by: Bugen Zhao <i@bugenzhao.com>

commit be50f93
Author: Liang <44948473+soundOfDestiny@users.noreply.github.com>
Date:   Mon Jun 20 13:27:37 2022 +0800

    feat(compaction): let compactor be unaware of vnode mapping (risingwavelabs#3321)

commit 88258a6
Author: lmatz <lmatz823@gmail.com>
Date:   Sun Jun 19 21:31:01 2022 -0700

    doc: no need to manually check in PR from forks (risingwavelabs#3325)

commit c590e18
Author: zwang28 <70626450+zwang28@users.noreply.github.com>
Date:   Mon Jun 20 12:13:50 2022 +0800

    refactor(storage): split HummockVersion's levels by compaction group. (risingwavelabs#3206)

commit f1c3298
Author: zwang28 <70626450+zwang28@users.noreply.github.com>
Date:   Mon Jun 20 11:35:18 2022 +0800

    feat(meta): register source to compaction group manager (risingwavelabs#3300)

commit bf08b54
Author: Zack <52342064+nhzaci@users.noreply.github.com>
Date:   Mon Jun 20 11:25:39 2022 +0800

    feat(frontend): Add sql string into context for debugging (risingwavelabs#3312)

    * feat(frontend): Add sql string into context for debugging

    * Remove renaming

    * Refactor to use str

commit f784ba3
Author: zwang28 <70626450+zwang28@users.noreply.github.com>
Date:   Mon Jun 20 11:22:12 2022 +0800

    feat(storage): shared buffer flush L0 by compaction group (risingwavelabs#3200)

commit bd48bba
Author: Kexiang Wang <kx.wang@hotmail.com>
Date:   Sun Jun 19 07:48:45 2022 -0400

    feat: modify interfaces to support specifying parallelism for each fr… (risingwavelabs#3283)

    feat: modify interfaces to support specifying parallelism for each fragment

commit 8f0e0b2
Author: Steven Chua <stevengkc714@protonmail.com>
Date:   Sun Jun 19 12:56:51 2022 +0800

    feat(ctl): Support basic sst dump in risectl (risingwavelabs#3309)

    * feat(ctl): Add sst-dump command to risectl

    * feat(ctl): Fix risectl compatibility and remove VNode info

commit daf9222
Author: Alex Chi <iskyzh@gmail.com>
Date:   Sat Jun 18 21:41:44 2022 +0800

    feat(risedev): generate risectl config (risingwavelabs#3318)

    * feat(risedev): generate risectl config

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

    * fix

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

commit 86ff992
Author: Alex Chi <iskyzh@gmail.com>
Date:   Sat Jun 18 20:52:51 2022 +0800

    feat(ctl): support table scan (risingwavelabs#3317)

    * feat(ctl): support table scan

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

    * license header

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

    * add docs

    Signed-off-by: Alex Chi <iskyzh@gmail.com>

commit 5ac5637
Author: Yikun Chen <36026213+cykbls01@users.noreply.github.com>
Date:   Sat Jun 18 08:03:06 2022 -0400

    feat: support interval comparison (risingwavelabs#3222)

    1. fix timestamp substract timestamp.
    2. support interval comparison. From pgsql, 1 month equal to 30 days and 1 day equal to 86400000 ms.

commit 722ff53
Author: Yuanxin Cao <60498509+xx01cyx@users.noreply.github.com>
Date:   Fri Jun 17 16:47:22 2022 +0800

    feat(meta): inform frontend of mview data distribution (risingwavelabs#3304)

    * feat(meta): inform frontend of mview data distribution

    * fix ut

    * set vnode mapping for materialzied source

    * move ParallelUnitId into common, move vnode related contants into common/types

commit 8571ff4
Author: Renjie Liu <liurenjie2008@gmail.com>
Date:   Fri Jun 17 16:46:17 2022 +0800

    feat(batch): All tests should run in both local and distributed mode (risingwavelabs#3306)

    * feat(batch): All tests should run in both local and distributed mode

Signed-off-by: Little-Wallace <bupt2013211450@gmail.com>
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.

None yet

2 participants