Skip to content

Commit

Permalink
[test](mtmv) Fix mv regression test fail occasionally and add some log (
Browse files Browse the repository at this point in the history
#47103)

### What problem does this PR solve?

1. Optimize the test validation logic to check whether the materialized
view is built based on the materialized view name.
2. Wait for the synchronization of the materialized view to be
completed, using the new method.
  • Loading branch information
seawinde authored Jan 22, 2025
1 parent 55702a1 commit 2e61451
Show file tree
Hide file tree
Showing 10 changed files with 734 additions and 119 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,7 @@ public enum IgnoreSplitType {
public int maxScanKeyNum = 48;
@VariableMgr.VarAttr(name = MAX_PUSHDOWN_CONDITIONS_PER_COLUMN)
public int maxPushdownConditionsPerColumn = 1024;
@VariableMgr.VarAttr(name = SHOW_HIDDEN_COLUMNS, flag = VariableMgr.SESSION_ONLY)
@VariableMgr.VarAttr(name = SHOW_HIDDEN_COLUMNS, flag = VariableMgr.SESSION_ONLY, needForward = true)
public boolean showHiddenColumns = false;

@VariableMgr.VarAttr(name = ALLOW_PARTITION_COLUMN_NULLABLE, description = {
Expand Down Expand Up @@ -1535,25 +1535,25 @@ public void setEnableLeftZigZag(boolean enableLeftZigZag) {
/**
* For debug purpose, don't merge unique key and agg key when reading data.
*/
@VariableMgr.VarAttr(name = SKIP_STORAGE_ENGINE_MERGE)
@VariableMgr.VarAttr(name = SKIP_STORAGE_ENGINE_MERGE, needForward = true)
public boolean skipStorageEngineMerge = false;

/**
* For debug purpose, skip delete predicate when reading data.
*/
@VariableMgr.VarAttr(name = SKIP_DELETE_PREDICATE)
@VariableMgr.VarAttr(name = SKIP_DELETE_PREDICATE, needForward = true)
public boolean skipDeletePredicate = false;

/**
* For debug purpose, skip delete sign when reading data.
*/
@VariableMgr.VarAttr(name = SKIP_DELETE_SIGN)
@VariableMgr.VarAttr(name = SKIP_DELETE_SIGN, needForward = true)
public boolean skipDeleteSign = false;

/**
* For debug purpose, skip delete bitmap when reading data.
*/
@VariableMgr.VarAttr(name = SKIP_DELETE_BITMAP)
@VariableMgr.VarAttr(name = SKIP_DELETE_BITMAP, needForward = true)
public boolean skipDeleteBitmap = false;

// This variable replace the original FE config `recover_with_skip_missing_version`.
Expand Down
Loading

0 comments on commit 2e61451

Please sign in to comment.