Commit Graph

36 Commits

Author SHA1 Message Date
kangkaisen 319afcdd5b
[Tool] Support compilation on Mac 3: CMakeLists.txt (#63713) 2025-10-01 09:45:20 +08:00
Harbor Liu e5bf03cda5
[Refactor] Refactors how host and port pairs are represented and handled throughout the codebase (#63695) 2025-09-30 14:28:28 +08:00
gengjun-git 55917b4f85
[Refactor] Refactor NodeMgr/SystemInfoService/BrokerMgr persist code to update memory state in WALApplier (#62336)
Signed-off-by: gengjun-git <gengjun@starrocks.com>
2025-09-24 09:34:40 +08:00
kangkaisen 855b911df1
[Doc] Add ExecState field documentation for show proc current_queries commands (#62926)
Co-authored-by: Claude <noreply@anthropic.com>
2025-09-10 18:40:15 +08:00
Seaven 5499393086
[Refactor] Add visitLiteral in astvisitor (#62392)
Signed-off-by: Seaven <seaven_7@qq.com>
2025-09-01 16:05:21 +08:00
shuming.li ced00834c2
[BugFix] Fix mv refresh with potential to-refresh partitions (#62422)
Signed-off-by: shuming.li <ming.moriarty@gmail.com>
2025-08-29 02:39:21 +00:00
shuming.li b18a10aa9e
[Tool] Ignore fe/plugin/*/target/ directory (#62324)
Signed-off-by: shuming.li <ming.moriarty@gmail.com>
2025-08-26 16:35:02 +08:00
gengjun-git 6fe2045fd0
[Enhancement] Remove thrift_types_customize_impl.cpp from gitignore (#54564)
Signed-off-by: gengjun-git <gengjun@starrocks.com>
2025-01-03 17:09:00 +08:00
Fangbin Sun 012ef0896f
[Enhancement] ignore untracked gen_cpp cmake-build files (#47858)
## Why I'm doing:
When using a remote server to build `gen_cpp`, users will encounter below issue when submitting a new pr:
```
Untracked files:
  (use "git add <file>..." to include in what will be committed)
	be/src/gen_cpp/cmake-build-debug-remote-host/
```
## What I'm doing:

Add the `cmake-build` dir to `.gitignore`.

Signed-off-by: murong00 <sunfangbin@gmail.com>
2024-07-04 08:55:09 -07:00
Letian Jiang 1457922cf5
[Tool] SQL test support hive/spark/trino engines (#47333)
Signed-off-by: Letian Jiang <letian.jiang@outlook.com>
2024-06-26 15:36:14 +08:00
zihe.liu fe0f20977a
[UT] remove setting session variables have not been added (#43936)
Signed-off-by: zihe.liu <ziheliu1024@gmail.com>
2024-04-11 21:30:20 +08:00
guoxiaolong c9667e528d
[Enhancement] add ignore folders and files to development environment (#32884)
Fixes #issue
When FE builds a local development environment, such as IntelliJ IDEA, some classes do not exist and the local development environment will report a red error. These classes are generated by gensrc during compilation, and we need to manually copy them to the fe core directory, but we need to block these files.

Signed-off-by: guoxiaolongzte <467887319@qq.com>
2023-10-16 23:13:05 -07:00
liuyehcf 76eaf65839
[UT] Add integration test for runtime profile (#29065)
Fixes #issue

## What type of PR is this:
- [ ] BugFix
- [ ] Feature
- [ ] Enhancement
- [ ] Refactor
- [x] UT
- [ ] Doc
- [ ] Tool

## Checklist:
- [ ] I have added test cases for my bug fix or my new feature
- [ ] This pr will affect users' behaviors
- [ ] This pr needs user documentation (for new or modified features or
behaviors)
  - [ ] I have added documentation for my new feature or new function

## Bugfix cherry-pick branch check:
- [x] I have checked the version labels which the pr will be
auto-backported to the target branch
  - [ ] 3.1
  - [ ] 3.0
  - [ ] 2.5
  - [ ] 2.4

Signed-off-by: liuyehcf <1559500551@qq.com>
2023-08-14 18:58:14 +08:00
stdpain 03dfe3197e
[BugFix] Fix use wrong hash table when spill left/right outer join has other conjuncts (#23302)
Signed-off-by: stdpain <drfeng08@gmail.com>
2023-05-15 16:51:47 +08:00
zihe.liu 86b60dca43
[Chore] Ignore ut_prots dir (#22656)
#22483 added the file fe/fe-core/null/fe/ut_ports/54618 by accident.
Remove it and ignore **/ut_ports.

Signed-off-by: ZiheLiu <ziheliu1024@gmail.com>
2023-04-27 15:40:12 +08:00
Gavin 9edd2cbf59
[Enhancement] Add starcache content directory to .gitignore to avoid untracking warning message. (#22177) 2023-04-21 22:58:04 +08:00
liuyehcf bd6cca27bb
[Enhancement] Support parallel merge (2) (#21205)
* [Enhancement] Support parallel merge (2)

Signed-off-by: liuyehcf <1559500551@qq.com>
2023-04-18 19:19:29 +08:00
liuyehcf 74a4e39369
[Enhancement] Support parallel merge (1) (#18525)
* [Enhancement] Support parallel merge algorithm (1)

Signed-off-by: liuyehcf <1559500551@qq.com>
2023-04-07 13:34:24 +00:00
Seaven 24f9f86c7a
[Enhancement] array_function support nested-type (#19040)
Signed-off-by: Seaven <seaven_7@qq.com>
2023-03-29 15:05:15 +08:00
Alex Zhu 2a89a40e9a
[Feature] Support query table function directly (#19973)
Now we can query table functions like normal tables:
```
> select * from TABLE(unnest(ARRAY<INT>[1,2])) t(x); // select
+------+
| x    |
+------+
|    1 |
|    2 |
+------+
2 rows in set (0.02 sec)

> select * from t0; // t0 is a normal table
+------+
| c0   |
+------+
|    1 |
+------+
1 row in set (0.10 sec)

> select * from t0, TABLE(unnest(ARRAY<INT>[1, 2])); // cross join
+------+--------+
| c0   | unnest |
+------+--------+
|    1 |      1 |
|    1 |      2 |
+------+--------+
2 rows in set (0.03 sec)

> select * from t0 left join TABLE(unnest(ARRAY<INT>[1, 2])) t1(x) on t0.c0=t1.x; // left join
+------+------+
| c0   | x    |
+------+------+
|    1 |    1 |
+------+------+
1 row in set (0.06 sec)

> select * from t0 right join TABLE(unnest(ARRAY<INT>[1, 2])) t1(x) on t0.c0=t1.x; // right join
+------+------+
| c0   | x    |
+------+------+
|    1 |    1 |
| NULL |    2 |
+------+------+
2 rows in set (0.04 sec)
```

Signed-off-by: sduzh <zhuming9011@qq.com>
2023-03-24 19:36:50 +08:00
yiming 1a788543c7
[BugFix] Fix rbac image load failure caused by class rename (#19715)
This is introduced by #19680, to keep backward compatibility, when the name in header is com.starrocks.privilege.PrivilegeManager, we won't throw any exception.
Signed-off-by: Dejun Xia <xiadejun@starrocks.com>
2023-03-17 16:38:32 +08:00
xyz 33d56ceac3
[Refactor] optimize jindosdk decompress procedure (#17028)
Currently, we will decompress jindosdk-4.6.2.tar.gz when building broker,
this is very time consuming.

In this pr, we optimize this procedure, jindosdk-4.6.2.tar.gz will
only be decompressed in the first time it downloads.

Signed-off-by: xyz <a997647204@gmail.com>
2023-01-30 14:13:19 +08:00
imay 07ba630e8f
[Refactor] Add swo file into gitignore (#13522) 2022-11-16 13:04:10 -08:00
Zhuhe Fang a2bdf5c8c5
[Feature]introduce the data type of Function to support lambda function (#9461) 2022-08-22 17:33:31 +08:00
imay 13919523db
[Refactor] Remove clusterName in StatementBase (#7990) 2022-06-29 13:39:35 +08:00
Seaven b196cb675b
UT-Refactor3.Move FE UT case (#3941) 2022-03-08 20:04:35 +08:00
liuyehcf 0aab70f374
Support truncate decimal (#3744) 2022-03-05 18:56:03 +08:00
liuyehcf b42dc63da5
Remove unused operator's mem_tracker (#2878) 2022-01-18 12:51:03 +08:00
liuyehcf afb3cd7b1a
Provide profile to pipeline (#969) 2021-11-01 15:49:43 +08:00
liuyehcf a8f5b127e3
Pipeline engine support table function (#874) 2021-10-27 17:35:08 +08:00
ZiChen Qian f02a582929
ignore the .classpath, generated resource, thrift. (#542) 2021-10-01 20:59:21 +08:00
liuyehcf e65ec376d2
[SR-4679] Adjust the order of branches for case 'TestArray_test_array_column_with_count_distinct' (#300) 2021-09-18 09:56:34 +08:00
sduzh b573b341c7
Update issue templates (#150)
* Update issue template
2021-09-11 12:29:46 +08:00
stdpain 0593c4075b
[SR-4347] support vectorized es_http_scan_node (#28) 2021-09-10 11:22:22 +08:00
satanson 286ea6ca52
add .clang-format (#1) 2021-09-05 14:30:18 +08:00
Zhao Chun 5fa55b8199 Init commit 2021-09-04 22:14:12 +08:00