Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
3315146
plan
shuwenwei May 28, 2026
0026afb
scan
shuwenwei May 29, 2026
48d86c9
push down tag predicate
shuwenwei Jun 1, 2026
3d37f72
fix explain analyze file num
shuwenwei Jun 1, 2026
5391967
fix
shuwenwei Jun 3, 2026
5c90275
Merge branch 'iotdb_master' into readTsFileTableFunction
shuwenwei Jun 3, 2026
194e609
FileReaderManager
shuwenwei Jun 4, 2026
342c4e1
impl 2
shuwenwei Jun 4, 2026
0bc8746
extends device table scan node
shuwenwei Jun 4, 2026
66bcfbf
fix
shuwenwei Jun 5, 2026
110b98a
delete old operator
shuwenwei Jun 5, 2026
4be16d3
agg scan
shuwenwei Jun 5, 2026
93f9a50
modify parameter name
shuwenwei Jun 8, 2026
9cf449d
add external tsfile resource
shuwenwei Jun 10, 2026
194cd30
fix bug
shuwenwei Jun 10, 2026
5dd9a42
fix
shuwenwei Jun 10, 2026
83e4e51
Merge branch 'iotdb_master' into read_tsfile_table_function
shuwenwei Jun 10, 2026
9a63ebf
fix
shuwenwei Jun 11, 2026
80fce1a
add memory control
shuwenwei Jun 11, 2026
96b1077
remove seralize/deserialize from ReadTsFileTableFunction
shuwenwei Jun 11, 2026
5e7bc0a
fix mem control
shuwenwei Jun 12, 2026
d32ac2b
Merge branch 'iotdb_master' into read_tsfile_table_function
shuwenwei Jun 12, 2026
f06a364
refactor
shuwenwei Jun 15, 2026
ec2f68e
refactor & add it
shuwenwei Jun 15, 2026
8587cbd
add tests
shuwenwei Jun 16, 2026
3106fa1
fix i18n
shuwenwei Jun 16, 2026
2be51e7
fix
shuwenwei Jun 16, 2026
824f4dd
fix
shuwenwei Jun 16, 2026
1051e39
fix
shuwenwei Jun 16, 2026
c44579f
check query timeout
shuwenwei Jun 16, 2026
c6ea31f
refactor
shuwenwei Jun 16, 2026
355d8ba
fix it
shuwenwei Jun 16, 2026
96ea0ee
modify name of temp dir
shuwenwei Jun 16, 2026
9c5cc36
fix it
shuwenwei Jun 16, 2026
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import org.apache.iotdb.commons.queryengine.plan.relational.function.TableBuiltinTableFunction;
import org.apache.iotdb.commons.udf.builtin.relational.TableBuiltinAggregationFunction;
import org.apache.iotdb.commons.udf.builtin.relational.TableBuiltinScalarFunction;
import org.apache.iotdb.db.queryengine.plan.relational.function.DataNodeTableBuiltinTableFunction;
import org.apache.iotdb.it.env.EnvFactory;
import org.apache.iotdb.it.framework.IoTDBTestRunner;
import org.apache.iotdb.itbase.category.TableClusterIT;
Expand Down Expand Up @@ -55,7 +56,7 @@ public class IoTDBSQLFunctionManagementIT {
private static final int BUILTIN_AGGREGATE_FUNCTIONS_COUNT =
TableBuiltinAggregationFunction.values().length;
private static final int BUILTIN_TABLE_FUNCTIONS_COUNT =
TableBuiltinTableFunction.values().length;
TableBuiltinTableFunction.values().length + DataNodeTableBuiltinTableFunction.values().length;
private static final int BUILTIN_FUNCTIONS_COUNT =
BUILTIN_SCALAR_FUNCTIONS_COUNT
+ BUILTIN_AGGREGATE_FUNCTIONS_COUNT
Expand Down
Loading
Loading