You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2022/12/20 13:32:53 UTC

[GitHub] [doris] BiteTheDDDDt opened a new pull request, #15212: [Feature][MV] support advance mv

BiteTheDDDDt opened a new pull request, #15212:
URL: https://github.com/apache/doris/pull/15212

   # Proposed changes
   
   ```sql
   mysql [test]>create table d_table(
       -> k1 int null,
       -> k2 int null,
       -> k3 bigint null,
       -> k4 bigint null,
       ->   k5 varchar(50) null
       -> )
       -> duplicate key (k1,k2,k3)
       -> distributed BY hash(k1) buckets 3
       -> properties("replication_num" = "1");
   Query OK, 0 rows affected (0.06 sec)
   
   mysql [test]>
   mysql [test]>insert into d_table values(1,1,1,1,'a');
   Query OK, 1 row affected (0.09 sec)
   {'label':'insert_ea19c520da154420_80fb4d03ed0e4d4f', 'status':'VISIBLE', 'txnId':'53049'}
   
   mysql [test]>insert into d_table values(2,2,2,2,'b');
   Query OK, 1 row affected (0.03 sec)
   {'label':'insert_3840f65b926d407b_b3f9cbd706c0e681', 'status':'VISIBLE', 'txnId':'53050'}
   
   mysql [test]>insert into d_table values(3,-3,3,-3,'c');
   Query OK, 1 row affected (0.03 sec)
   {'label':'insert_5e7f7a2475447b9_b4015a391767aa6c', 'status':'VISIBLE', 'txnId':'53051'}
   
   mysql [test]>
   mysql [test]>create materialized view k12a as select k1,abs(k2) from d_table; 
   Query OK, 0 rows affected (0.00 sec)
   
   mysql [test]>select k1,abs(k2) from d_table;
   +------+---------+
   | k1   | abs(k2) |
   +------+---------+
   |    2 |       2 |
   |    1 |       1 |
   |    3 |       3 |
   +------+---------+
   3 rows in set (0.03 sec)
   
   
   mysql [test]>explain verbose select k1,abs(k2) from d_table;
   +----------------------------------------------------------------------+
   | Explain String                                                       |
   +----------------------------------------------------------------------+
   | PLAN FRAGMENT 0                                                      |
   |   OUTPUT EXPRS:                                                      |
   |     k1                                                               |
   |     `default_cluster:test`.`d_table`.`abs(k2)`                       |
   |   PARTITION: UNPARTITIONED                                           |
   |                                                                      |
   |   VRESULT SINK                                                       |
   |                                                                      |
   |   1:VEXCHANGE                                                        |
   |      tuple ids: 0                                                    |
   |                                                                      |
   | PLAN FRAGMENT 1                                                      |
   |                                                                      |
   |   PARTITION: HASH_PARTITIONED: `default_cluster:test`.`d_table`.`k1` |
   |                                                                      |
   |   STREAM DATA SINK                                                   |
   |     EXCHANGE ID: 01                                                  |
   |     UNPARTITIONED                                                    |
   |                                                                      |
   |   0:VOlapScanNode                                                    |
   |      TABLE: default_cluster:test.d_table(k12a), PREAGGREGATION: ON   |
   |      partitions=1/1, tablets=3/3, tabletList=229086,229088,229090    |
   |      cardinality=0, avgRowSize=12.0, numNodes=1                      |
   |      tuple ids: 0                                                    |
   |                                                                      |
   | Tuples:                                                              |
   | TupleDescriptor{id=0, tbl=d_table, byteSize=16}                      |
   |   SlotDescriptor{id=0, col=k1, type=INT, nullable=true}              |
   |   SlotDescriptor{id=2, col=abs(k2), type=BIGINT, nullable=false}     |
   +----------------------------------------------------------------------+
   29 rows in set (0.00 sec)
   
   mysql [test]>desc d_table all;
   +-----------+---------------+---------+-------------+------+-------+---------+-------+---------+
   | IndexName | IndexKeysType | Field   | Type        | Null | Key   | Default | Extra | Visible |
   +-----------+---------------+---------+-------------+------+-------+---------+-------+---------+
   | d_table   | DUP_KEYS      | k1      | INT         | Yes  | true  | NULL    |       | true    |
   |           |               | k2      | INT         | Yes  | true  | NULL    |       | true    |
   |           |               | k3      | BIGINT      | Yes  | true  | NULL    |       | true    |
   |           |               | k4      | BIGINT      | Yes  | false | NULL    | NONE  | true    |
   |           |               | k5      | VARCHAR(50) | Yes  | false | NULL    | NONE  | true    |
   |           |               |         |             |      |       |         |       |         |
   | k12a      | DUP_KEYS      | k1      | INT         | No   | true  |         |       | true    |
   |           |               | abs(k2) | BIGINT      | No   | true  |         |       | true    |
   +-----------+---------------+---------+-------------+------+-------+---------+-------+---------+
   8 rows in set (0.01 sec)
   ```
   ## Problem summary
   
   Describe your changes.
   
   ## Checklist(Required)
   
   1. Does it affect the original behavior: 
       - [ ] Yes
       - [ ] No
       - [ ] I don't know
   2. Has unit tests been added:
       - [ ] Yes
       - [ ] No
       - [ ] No Need
   3. Has document been added or modified:
       - [ ] Yes
       - [ ] No
       - [ ] No Need
   4. Does it need to update dependencies:
       - [ ] Yes
       - [ ] No
   5. Are there any changes that cannot be rolled back:
       - [ ] Yes (If Yes, please explain WHY)
       - [ ] No
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at [dev@doris.apache.org](mailto:dev@doris.apache.org) by explaining why you chose the solution you did and what alternatives you considered, etc...
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1366581721

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1364905961

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1366411397

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1371695869

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1363716289

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1366358114

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1367790814

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1373478938

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] HappenLee merged pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
HappenLee merged PR #15212:
URL: https://github.com/apache/doris/pull/15212


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1362587270

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1365044087

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1367330961

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1365841201

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1372002975

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1371844566

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1362543496

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1373265035

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1374351968

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1365004412

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1361369205

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1367163863

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1367740666

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature][Materialized-View] support advance mv

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1359359132

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1361082324

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1367819309

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1367827099

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1374728621

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1365709326

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] hello-stephen commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
hello-stephen commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1366417284

   TeamCity pipeline, clickbench performance test result:
    the sum of best hot time: 34.53 seconds
    load time: 634 seconds
    storage size: 17123685169 Bytes
    https://doris-community-test-1308700295.cos.ap-hongkong.myqcloud.com/tmp/20221228070127_clickbench_pr_69888.html


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1367111595

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1370792878

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #15212: [Feature](Materialized-View) support advanced Materialized-View

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #15212:
URL: https://github.com/apache/doris/pull/15212#issuecomment-1369757139

   clang-tidy review says "All clean, LGTM! :+1:"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org