olap
文章平均质量分 61
innersense
这个作者很懒,什么都没留下…
展开
-
DORIS 文件读取(研究中)
DORIS 后端读取文件代码解读原创 2022-09-12 23:05:09 · 903 阅读 · 0 评论 -
DORIS SQL 执行过程
以一条SQL的执行过程为例:select count(*),siteid from table1 where siteid + 1 > 0 group by siteid ;FE 端:MysqlServer => ConnectScheduler => ConnectProcessor handleQuery() { List<StatementBase> stmts = analyze(originStmt); //词法解析,语法解...原创 2022-01-04 14:49:22 · 1417 阅读 · 0 评论 -
C++ reinterpret_cast实例及对数组长度限制的突破
比如某个对象中对字符串数组进行了长度限制,正常在代码中取超出长度限制的时候会报错,如:class Tuple {public:void show(){ data[2]; //这样直接取运行时,会报错}char getChar(int i ){ return *data[i];} private: char * data[0];}但是如果是将某块内存分配好了后,使用reinterpret_cast进行转换,则不会报错。#include <stdio.h原创 2021-12-28 16:14:55 · 911 阅读 · 0 评论