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(frontend): apply SessionTimezone and ConstEvalRewriter expr rewriters to during gen_{batch,stream}_plan #7761

Merged
merged 39 commits into from
Feb 23, 2023
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
4b24e1b
apply for stream
jon-chuang Feb 8, 2023
53cd4f4
fix
jon-chuang Feb 8, 2023
7e2e10a
remove the const eval, still need session timezone
jon-chuang Feb 8, 2023
41632e4
commit
jon-chuang Feb 8, 2023
7fd06c6
fix clippy
jon-chuang Feb 8, 2023
e3fac9d
stash
jon-chuang Feb 8, 2023
ec5ea0d
fix
jon-chuang Feb 8, 2023
df8a231
try disable
jon-chuang Feb 8, 2023
36970f0
fix
jon-chuang Feb 8, 2023
f942903
minor
jon-chuang Feb 8, 2023
a94e7c5
Merge branch 'main' of https://github.com/singularity-data/risingwave…
jon-chuang Feb 8, 2023
2c49c0a
add test changes
jon-chuang Feb 8, 2023
7fa7c22
add fix
jon-chuang Feb 8, 2023
f7c6bea
Merge branch 'jon/correclty-evaluate-field-expr' into jon/expr-rewrit…
jon-chuang Feb 8, 2023
e286e1b
fix
jon-chuang Feb 8, 2023
1c63997
minor
jon-chuang Feb 8, 2023
3e483d2
fix
jon-chuang Feb 8, 2023
4ffa9e5
minor
jon-chuang Feb 8, 2023
83a24a6
Merge branch 'jon/fix-interval' into jon/expr-rewrite-session-timezone
jon-chuang Feb 8, 2023
8901f4f
Merge branch 'main' of https://github.com/singularity-data/risingwave…
jon-chuang Feb 20, 2023
d4cad1e
fix
jon-chuang Feb 20, 2023
375b87c
fix
jon-chuang Feb 20, 2023
d3070b6
minor
jon-chuang Feb 20, 2023
ecd865a
minor
jon-chuang Feb 20, 2023
c10eed3
minor
jon-chuang Feb 20, 2023
5960682
fix
jon-chuang Feb 21, 2023
4cb1966
Merge branch 'main' of https://github.com/singularity-data/risingwave…
jon-chuang Feb 21, 2023
9bf89fa
Merge branch 'main' of https://github.com/singularity-data/risingwave…
jon-chuang Feb 22, 2023
a8e05f7
apply
jon-chuang Feb 22, 2023
e542b15
fix
jon-chuang Feb 22, 2023
68234db
fix
jon-chuang Feb 22, 2023
305803f
fix
jon-chuang Feb 22, 2023
de81675
minor
jon-chuang Feb 22, 2023
b35f4cc
fix
jon-chuang Feb 22, 2023
9b3d394
minor
jon-chuang Feb 22, 2023
0c89a49
fix
jon-chuang Feb 22, 2023
d9d0301
Merge branch 'jon/fix-array-to-string' into jon/expr-rewrite-session-…
jon-chuang Feb 22, 2023
fd65a00
Merge branch 'main' into jon/expr-rewrite-session-timezone
jon-chuang Feb 22, 2023
ba62977
Merge branch 'main' into jon/expr-rewrite-session-timezone
jon-chuang Feb 22, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
jon-chuang committed Feb 22, 2023
commit e542b1508460e8e214b16b93ab7b25412834154d
4 changes: 3 additions & 1 deletion src/storage/src/hummock/mod.rs
Original file line number Diff line number Diff line change
@@ -81,7 +81,9 @@ use self::iterator::{BackwardUserIterator, HummockIterator, UserIterator};
pub use self::sstable_store::*;
use super::monitor::HummockStateStoreMetrics;
use crate::error::StorageResult;
use crate::hummock::backup_reader::{BackupReader, BackupReaderRef};
#[cfg(any(test, feature = "test"))]
use crate::hummock::backup_reader::BackupReader;
use crate::hummock::backup_reader::BackupReaderRef;
use crate::hummock::compactor::CompactorContext;
use crate::hummock::event_handler::hummock_event_handler::BufferTracker;
use crate::hummock::event_handler::{HummockEvent, HummockEventHandler};