kailixu
f5d28cdcd1
chore: more check
2023-06-12 10:49:17 +08:00
kailixu
b200fdba51
chore: node type
2023-06-12 10:44:01 +08:00
kailixu
58c43901ed
chore: another logic
2023-06-12 09:14:38 +08:00
kailixu
1812b9e968
Merge branch '3.0' into fix/TD-24567-3.0
2023-06-09 09:55:47 +08:00
kailixu
576e3d1156
chore: erase duplicated func node for window logic node
2023-06-08 11:49:49 +08:00
dapan1121
958160be0b
Merge pull request #21599 from taosdata/enh/TD-24274
...
enh: enable interp fill value support scarlar expression
2023-06-08 10:39:38 +08:00
Ganlin Zhao
150e9ae296
make interp fill multiple col logic same as window fill
2023-06-07 16:55:03 +08:00
dapan1121
01683f6d92
Merge pull request #21527 from taosdata/feat/TS-3048
...
feat(query): support single point interp
2023-06-06 18:17:20 +08:00
kailixu
bcac24b6b7
fix: tsma query with order by _wstart/_wend
2023-06-06 17:19:59 +08:00
Ganlin Zhao
e8eadeb9f5
Merge branch '3.0' into feat/TS-3048
2023-06-06 14:55:12 +08:00
slzhou
beb2b7b467
fix: rewrite count(*) to count(1) for temp table
2023-06-06 07:39:14 +08:00
Ganlin Zhao
005182c3c9
fix multiple interp issue
2023-06-05 16:40:48 +08:00
Ganlin Zhao
6b670b7f08
fix desc
2023-06-05 15:48:15 +08:00
Ganlin Zhao
be34546edd
enh: enable interp fill value support scarlar expression
2023-06-05 15:19:06 +08:00
dapan1121
ddd3a53e56
Merge remote-tracking branch 'origin/3.0' into fix/TD-24001
2023-06-02 13:57:34 +08:00
Haojun Liao
d45aa7ef84
Merge pull request #21555 from taosdata/fix/liaohj_main
...
other: merge main into 3.0.
2023-06-02 13:11:12 +08:00
Haojun Liao
5301c5756a
other: merge main into 3.0.
2023-06-01 09:29:18 +08:00
wangmm0220
b8a4df4146
fix:avoid put tag to select if where condition is always true or false
2023-05-30 16:50:20 +08:00
Ganlin Zhao
1009c80967
fix bug
2023-05-30 14:21:32 +08:00
Ganlin Zhao
b83a4b14e7
allow omit every clause for single point interp
2023-05-29 17:34:35 +08:00
wangmm0220
78db3520a6
fix:conflict
2023-05-29 14:57:03 +08:00
dapan1121
60588af694
fix: add topic query
2023-05-29 13:33:51 +08:00
wangmm0220
208ba2ef4d
fix:memory leak
2023-05-26 10:45:37 +08:00
dapan1121
e70c433a59
enh: support time line query from union/union all subquery
2023-05-26 08:44:23 +08:00
dapan1121
2713f4f6d4
feat: support create topic as stable with conditions
2023-05-25 19:01:58 +08:00
wangmm0220
357e86b994
feat:add tag filter for stable subscribe
2023-05-24 18:59:47 +08:00
wangmm0220
8537e4e80e
feat:add tag filter for stable subscribe
2023-05-24 18:26:55 +08:00
Dingle Zhang
984211f3b4
Feature/3.0 geometry ( #21037 )
...
* Add GEOMETRY data type and make sql.c able to parse it. The GEMETRY works like BINARY so far.
* add GEOMETRY type into gConvertTypes to fix some issues like DELETE calling
* change some test cases to make sure no same timestamp is inserted, and add my smoketest.sh
* Add a function MakePoint() and introduce a lib geometry
* implement sql functions GeomFromText() and AsText()
* Use GEOS *_r funcions instead for thread safety
* Handle with TSDB_DATA_TYPE_GEOMETRY when INSERT geometry data by converting WKT.
Add geosWrapper to wrap the basic GEOS functions for TDEngine.
* refactor AsText and MakePoint functions to be like GeomFromText
* Show WKT when print geometry data in screen
Dump hex data when dump geometry data in a file
* define TYPE_BYTES item for TSDB_DATA_TYPE_GEOMETRY, which casued some strange issues.
* set number of decimals of WKT to 6
* Implement SQL function Intersects()
* refactor geometry sql functions
* Add geosErrMsgeHandler() to get the GEOS error detail
* use threadlocal to instantiate SGeosContext
call destroyGeosContext() only if the thread exists
* remove SGeosContext *context param for all geometry functions since we use thread local one,
so that all caller do not need to know the context.
* Modify Intersects() to call PreparedIntersects() when one of param is a constant, which has higher performance.
* rename prepareFn() to initCtxFn() to avoid confusion with PreparedFn
* Add prefix "ST_" for all geometry functions
* move getThreadLocalGeosCtx() and destroyThreadLocalGeosCtx() into util,
so that all unit test tools can compile
* Add unit test for geometry lib, only test MakePoint so far
* refactor and enhance existing cases in geomFuncTest
* implement NULL type and NULL value test for geomFuncTest
* add test on geomFromText()
* add unit test on AsText() in geomFuncTest
* combine some makePointFunction test items
* add intersectsFunctionTwoColumns test
refactor on callGeomFromTextWrapper functions
* enhance intersectsFunction test to add cases like input constant , NULL type, NULL value, or wrong content
* add more cases into intersectsFunction test
* Add basic test on geometry in system test
* Add ST_GeomFromText and ST_AsText function test in system test on geometry
* add ST_Intersects function test in system test on geometry
* support to check expectedErrno in system test on geometry
* adjust geomTest unit test and geometry system test
* add geometry data type and functions in doc english version
* implement touchesFunction() in geometry lib
refactor geometry relation functions model
* separate gemFuncTest into several src files
* add unit test on touchesFunction
* support sql function ST_Touches()
add system test on ST_Touches
* add docs for ST_Touches()
* Add ST_Contains()
* Add ST_Covers()
* Add ST_Equals()
* add swapAllowed param for geomRelationFunction()
read geom2 earlier intead of at doGeosRelation()
* Add ST_ContainsProperly()
* build on windows
* Merge from 3.0 to 3.0_geometry
* change macro definition TSDB_DATA_TYPE_GEOMETRY as the last one for compatibility
* change '\\NULL' to 'NULL' back in shellDumpFieldToFile()
* add /usr/local/include into include directory
* add /usr/local/inlcude and /usr/local/lib in cmake.platform for DARWIN
2023-05-24 15:36:46 +08:00
dapan1121
4c88fd08de
Merge remote-tracking branch 'origin/3.0' into fix/TD-24001
2023-05-23 09:25:37 +08:00
dapan1121
70444e2d82
Merge pull request #21329 from taosdata/feat/TD-21187
...
feat(query): interp support ignore null value opition
2023-05-20 14:14:21 +08:00
dapan1121
d801aaa2e6
Merge pull request #21352 from taosdata/fix/TD-24218
...
fix: fix interp in nested query and fill value with string issue
2023-05-20 14:10:26 +08:00
Ganlin Zhao
a3ca23b688
forbid interp ignoring null value used for multiple cols
2023-05-19 16:43:39 +08:00
Haojun Liao
1e020a46c9
other: merge main.
2023-05-19 09:07:35 +08:00
Haojun Liao
d4b0e102af
fix:do some internal refactor.
2023-05-19 08:55:59 +08:00
Ganlin Zhao
0a41ba1573
add test cases
2023-05-18 18:48:00 +08:00
dapan1121
5ac91597b6
Merge pull request #21310 from wangjiaming0909/fix/TS-3398
...
fix: select <expr1>, <expr1##sth else> from ... return error data whe…
2023-05-18 10:07:06 +08:00
Ganlin Zhao
20684f873e
fix interp in nested query report error
2023-05-17 17:49:07 +08:00
wangjiaming0909
789b0c7178
fix: select <expr1>, <expr1##sth else> from ... return error data when strlen(expr1) > TSDB_COL_NAME_LEN
2023-05-16 15:42:30 +08:00
dapan1121
cf7b4593e7
feat: add drop dnode unsafe command
2023-05-16 09:50:10 +08:00
Haojun Liao
99148d6719
other: merge 3.0
2023-05-13 20:02:48 +08:00
Haojun Liao
236926b9ee
other: merge enh/rocksdbstate
2023-05-13 19:49:28 +08:00
Haojun Liao
1975e94501
Merge branch 'main' into enh/rocksdbSstate
2023-05-13 19:41:03 +08:00
dapan1121
9394afec68
Merge pull request #21144 from taosdata/feat/TD-19801
...
feat(query): support interp with super table
2023-05-12 11:37:20 +08:00
kailixu
f4d90fb9bb
fix: column length check when update/add column
2023-05-11 20:59:07 +08:00
yihaoDeng
5708fcb5cb
Merge branch 'enh/3.0' into enh/rocksdbSstateMerge
2023-05-10 08:02:16 +00:00
dapan1121
eb7cd25e2e
enh: support nest partition by clause
2023-05-10 14:34:41 +08:00
Yihao Deng
c6e5879f44
Merge branch 'main' into enh/rocksdbSstate
2023-05-10 10:04:28 +08:00
yihaoDeng
8356533eb1
Merge branch 'enh/standVer' into enh/rocksdbSstateMerge
2023-05-09 12:13:16 +00:00
dapan1121
a8c65cd25a
feat: support restore dnode clause
2023-05-09 19:19:14 +08:00
dapan1121
7ea23a33bc
enh: optimize time line function validation
2023-05-09 16:37:08 +08:00
shenglian zhou
50feb64748
fix: add check nchar/varchar column length for normal table
2023-05-09 14:29:09 +08:00
slzhou
2f45a3dfdb
fix: change variable name
2023-05-08 14:42:31 +08:00
yihaoDeng
08c3a63341
Merge branch 'enh/standVer' into enh/rocksdbSstateMerge
2023-05-06 12:37:54 +00:00
slzhou
04e9648d8e
enhance: change variable name
2023-05-06 17:16:27 +08:00
slzhou
276e5daa8c
fix: pseudo column function are treated as variable
2023-05-06 17:13:14 +08:00
shenglian zhou
c8ac3a581e
fix: forbid some stream computing
2023-05-06 15:50:38 +08:00
dapan1121
e798ef8645
Merge pull request #21168 from taosdata/fix/TD-23985
...
fix: having clause issues
2023-05-06 13:40:42 +08:00
Haojun Liao
da6212bab0
other: merge main.
2023-05-06 12:51:38 +08:00
dapan1121
47791dfe2f
fix: group by validation issue
2023-05-06 11:02:20 +08:00
dapan1121
997be0a3ed
fix: having clause issues
2023-05-05 17:04:36 +08:00
dapan1121
e889249c54
fix: grant no table specifed issue
2023-05-05 14:33:09 +08:00
dapan1121
3976504b47
fix: subtable grant is not allowed
2023-05-05 14:01:15 +08:00
Haojun Liao
23c49594b7
other: merge main.
2023-05-04 16:41:53 +08:00
dapan1121
70761fd959
enh: optimize tbname condition
2023-04-28 17:56:52 +08:00
liuyao
2984c5a758
merge main
2023-04-28 10:34:46 +08:00
dapan1121
51a1e07dbf
Merge pull request #21029 from taosdata/fix/TD-23797
...
fix: fix crash caused by deleting from system table
2023-04-26 17:48:58 +08:00
Ganlin Zhao
0ec4bbdfbc
enable interp used with super table
2023-04-26 09:48:13 +08:00
Xiaoyu Wang
05dc0fd6b1
Merge pull request #21056 from taosdata/feat/TD-23693
...
feat: subtable level privilege
2023-04-26 09:17:23 +08:00
kailixu
a6e37622ff
chore: more code
2023-04-25 22:15:06 +08:00
kailixu
2d4dd64584
chore: more code
2023-04-24 20:21:28 +08:00
Ganlin Zhao
80621e14eb
refactor
2023-04-24 17:24:07 +08:00
Ganlin Zhao
782566ad08
refactor
2023-04-24 17:15:46 +08:00
Xiaoyu Wang
dc5235eb92
feat: add pause/resume stream statement
2023-04-24 14:48:33 +08:00
Ganlin Zhao
1251245c2a
move code to parser
2023-04-24 09:49:03 +08:00
Xiaoyu Wang
4bb7a25fc7
feat: subtable level privilege
2023-04-23 16:30:28 +08:00
yihaoDeng
917b07348c
Merge branch 'fix/rocksdbState' into enh/rocksRevert
2023-04-23 02:37:26 +00:00
dapan1121
877b6e7053
fix: add table_prefix/table_suffix cases
2023-04-21 14:58:58 +08:00
dapan1121
3c2fc48e74
feat: support new table_prefix/table_suffix mode
2023-04-21 14:17:07 +08:00
Xiaoyu Wang
5367f25b4d
feat: the having clause can be used after the partition by clause or window clause
2023-04-19 16:55:08 +08:00
Xiaoyu Wang
61cc72c19a
Merge pull request #20961 from taosdata/enh/3.0_planner_optimize
...
feat: the fill value clause supports constant expressions
2023-04-18 16:24:29 +08:00
Xiaoyu Wang
1d2764ebdb
feat: the fill value clause supports constant expressions
2023-04-18 15:36:50 +08:00
dapan1121
d4cb608505
Merge pull request #20885 from taosdata/fix/TS-3108
...
fix: fix timestamp constant comparison precision error
2023-04-14 09:27:03 +08:00
Xiaoyu Wang
e9f5717bb3
Merge pull request #20926 from taosdata/fix/main_wxy
...
fix: optimizing 'alter table drop tag' error reporting
2023-04-14 09:12:03 +08:00
Xiaoyu Wang
06d9a74bcc
fix: optimizing 'alter table drop tag' error reporting
2023-04-13 19:38:47 +08:00
Xiaoyu Wang
17b5669555
fix: optimizing 'alter table drop tag' error reporting
2023-04-13 17:32:31 +08:00
Xiaoyu Wang
d3642c84a2
Merge remote-tracking branch 'origin/3.0' into fix/3.0_merge_main
2023-04-13 16:36:30 +08:00
Ganlin Zhao
b51477343d
fix crash
2023-04-13 15:50:30 +08:00
Xiaoyu Wang
1266d8c84a
Merge remote-tracking branch 'origin/main' into fix/main_wxy
2023-04-13 15:25:40 +08:00
Xiaoyu Wang
a4d818c982
fix: alter table check
2023-04-13 15:25:36 +08:00
Ganlin Zhao
fbbd3e4bdd
fix: fix illegal usage of _isfilled/_irowts
2023-04-13 14:33:06 +08:00
Xiaoyu Wang
a44d455e56
merge 3.0
2023-04-13 14:32:05 +08:00
Ganlin Zhao
d1544e8859
fix: fix illegal usage of _isfilled/_irowts
2023-04-13 14:05:04 +08:00
Ganlin Zhao
7414f28d17
fix translatefunc not getting precision issue
2023-04-13 11:22:15 +08:00
dapan1121
9ad17dddaf
Merge pull request #20890 from taosdata/fix/TS-3137-M
...
fix: the precision of delete statement
2023-04-12 19:41:29 +08:00
kailixu
1ed3149c39
fix: the precision of delete statement
2023-04-12 17:41:43 +08:00
Xiaoyu Wang
5ea2ba0a38
fix: error querying after setting permissions for varchar type tags
2023-04-12 17:39:23 +08:00
Xiaoyu Wang
4c04b155d5
merge main
2023-04-11 15:56:28 +08:00
Xiaoyu Wang
e2f82f4423
merge main
2023-04-10 09:56:03 +08:00
Xiaoyu Wang
0f2c753103
feat: table level privilege
2023-04-07 16:39:40 +08:00
Xiaoyu Wang
54f13f6f55
Merge pull request #20756 from taosdata/fix/3.0_merge_main
...
merge main
2023-04-06 15:44:23 +08:00
Xiaoyu Wang
cc7485812a
feat: add 'or replace' clause to 'create function' statement
2023-04-04 17:45:18 +08:00
Xiaoyu Wang
6825b196ef
feat: table level write privilege check
2023-04-04 17:19:18 +08:00
slzhou
bf486e99f2
fix: change eror msg
2023-04-04 15:20:35 +08:00
Xiaoyu Wang
e9d7a099cc
merge main
2023-04-04 14:50:58 +08:00
shenglian zhou
d547b9e38f
fix: interp pseudo column can not be used without interp function
2023-04-04 11:27:54 +08:00
Xiaoyu Wang
16394862a6
enh: last_row is keep order function
2023-04-03 18:11:46 +08:00
Xiaoyu Wang
e2f58a555d
enh: convert the month and year in interval-offset to a database precision duration
2023-04-03 11:24:29 +08:00
dapan1121
a8da9f31e7
fix: join query error
2023-03-30 18:04:32 +08:00
Xiaoyu Wang
6265251a03
feat: table level privilege syntax
2023-03-29 19:08:40 +08:00
Xiaoyu Wang
c1452851e3
fix: error in determining whether last(t.*) is a selection function
2023-03-29 14:39:37 +08:00
Xiaoyu Wang
daaf4871ac
feat: table level privilege syntax
2023-03-28 18:43:58 +08:00
Xiaoyu Wang
c4791d58a6
fix: create stream does not support event_window
2023-03-27 16:09:38 +08:00
Xiaoyu Wang
18b039fecd
Merge pull request #20603 from taosdata/enh/3.0_planner_optimize
...
fix: udf error check
2023-03-23 18:44:23 +08:00
Xiaoyu Wang
fddf3f16cf
fix: udf error check
2023-03-22 19:09:26 +08:00
dapan1121
ddbc0e2e61
fix: restore removed code
2023-03-22 17:37:57 +08:00
dapan1121
5b02af6a91
fix: merge main to 3.0
2023-03-22 16:08:16 +08:00
Xiaoyu Wang
eb79046a70
merge 3.0
2023-03-22 11:42:02 +08:00
dapan1121
a4eef9ea1f
Merge pull request #20570 from taosdata/szhou/fix-td23266
...
fix: create function error for json/decimal/blob/varbinary type
2023-03-22 09:47:17 +08:00
cadem
ea35f0ae11
feat/balance vgroup leader
2023-03-22 09:36:59 +08:00
Xiaoyu Wang
58ebd3539d
feat: alter database wal_retention_period/wal_retention_size
2023-03-21 16:45:19 +08:00
slzhou
b9edd24d3f
fix: create function error for json/decimal/blob/varbinary type
2023-03-21 00:38:13 -08:00
dapan1121
f5aabde528
Merge branch 'main' into fix/TD-23161
2023-03-17 19:00:04 +08:00
dapan1121
b56360c55b
Merge pull request #20509 from taosdata/enh/TS-2904
...
enh: optimize count(1) performance
2023-03-17 18:16:58 +08:00
dapan1121
28905af158
fix: column alisa issue and ut case
2023-03-17 17:01:46 +08:00
dapan1121
af5c214e16
fix: count(1) from nested query issue
2023-03-17 16:36:13 +08:00
dapan1121
746174ea45
fix: remove count optimize
2023-03-17 16:16:15 +08:00
dapan1121
c2f346407d
fix: order by error info
2023-03-17 15:17:09 +08:00
dapan1121
f45f3b460f
enh: optimize count(1) performance
2023-03-17 14:30:58 +08:00
Shengliang Guan
041f03e918
Merge pull request #20414 from taosdata/feat/TD-23058
...
feat: correct slimit&limit clause
2023-03-12 20:48:16 +08:00
slzhou
9df6609448
Merge branch '3.0' of github.com:taosdata/TDengine into szhou/python-udf
2023-03-12 09:41:09 +08:00
Xiaoyu Wang
a846c26ef9
merge main
2023-03-11 16:14:27 +08:00
dapan1121
5df32cbc78
feat: correct slimit&limit clause
2023-03-11 13:08:20 +08:00
Xiaoyu Wang
822bb11a26
fix: invalid topic query
2023-03-10 18:23:30 +08:00
slzhou
89d05296d8
fix: add varchar/nchar udf support
2023-03-10 14:56:35 +08:00
Xiaoyu Wang
e5de317f44
feat: alter database stt_trigger/minrows
2023-03-09 16:04:38 +08:00
dapan1121
273d0c0c07
fix: all columns are invisiable in system table query
2023-03-09 10:40:27 +08:00
Xiaoyu Wang
4c8bab7e58
merge main
2023-03-08 10:59:33 +08:00
Shengliang Guan
b11ac8aac7
Merge pull request #20297 from taosdata/fix/main_wxy
...
feat: the compact command adds 'start with end with' clause
2023-03-07 16:14:14 +08:00
Xiaoyu Wang
df0d200f59
feat: the compact command adds 'start with end with' clause
2023-03-07 15:24:04 +08:00
dapan1121
dd2137eab7
fix: empty ts range in nested query
2023-03-07 09:22:20 +08:00
Xiaoyu Wang
599967d39f
feat: add language clause for create function
2023-03-04 11:08:50 +08:00
Shengliang Guan
b4c7c16aa9
Merge pull request #20259 from taosdata/fix/main_bugfix_wxy
...
fix: create stream syntax check
2023-03-04 10:08:55 +08:00
Xiaoyu Wang
9305b0efd0
fix: create stream syntax check
2023-03-03 16:57:13 +08:00
dapan1121
f7a20af538
fix: taosc crash caused of ordering by string
2023-03-03 11:47:08 +08:00
Shengliang Guan
eeca7653b9
Merge pull request #20234 from taosdata/fix/TD-22868
...
fix:set timestamp precision
2023-03-02 17:21:37 +08:00
dapan1121
2a5074870d
fix: add missing db options in show create database result
2023-03-02 11:33:29 +08:00
54liuyao
8a23f0ce3b
fix:set timestamp precision
2023-03-01 18:59:27 +08:00
Xiaoyu Wang
f97a140a3c
merge 3.0
2023-02-27 14:16:33 +08:00
dapan1121
ec6c25e342
Merge branch '3.0' into fix/TD-22762
2023-02-25 10:59:23 +08:00
Xiaoyu Wang
d6dd087f84
merge main
2023-02-25 10:29:20 +08:00
dapan1121
eac27fc0fd
fix: empty ts range query issue
2023-02-24 18:39:17 +08:00
Haojun Liao
22aa03307c
fix(query): fix syntax errors on centos.
2023-02-24 11:38:54 +08:00
dapan1121
78d72a7db2
fix: alter column length too big issue
2023-02-23 14:21:14 +08:00
Xiaoyu Wang
62e3fd2cc6
fix: create stream semantic check
2023-02-21 19:19:43 +08:00
Xiaoyu Wang
319dfd8f06
merge 3.0
2023-02-20 17:21:37 +08:00
Haojun Liao
ad0be66a78
Merge pull request #19935 from taosdata/enh/dynamicIdx
...
feat: change index dynamicly
2023-02-20 15:48:49 +08:00
Xiaoyu Wang
c597de099f
merge main
2023-02-20 13:41:27 +08:00
Xiaoyu Wang
9e5f8b154b
fix: grammer check
2023-02-17 09:56:41 +08:00
Xiaoyu Wang
031a13c945
fix: create stream check and error code wrong
2023-02-14 11:24:44 +08:00
Ganlin Zhao
606993dc1d
fix: restrict interp query on stable for now
2023-02-14 10:22:09 +08:00
Yihao Deng
5af1faf916
Merge branch '3.0' into enh/dynamicIdx
2023-02-13 13:36:06 +08:00
yihaoDeng
a929aa22d8
merge 3.0
2023-02-12 10:48:18 +08:00
Xiaoyu Wang
3382a24a69
merge main
2023-02-10 18:03:11 +08:00
Xiaoyu Wang
b2e60da1cf
merge main
2023-02-10 10:34:55 +08:00
yihaoDeng
5315500287
fix filter error
2023-02-09 16:09:46 +08:00
Xiaoyu Wang
fcff07675d
merge main
2023-02-09 11:29:38 +08:00
Xiaoyu Wang
9bc225ffda
merge 3.0
2023-02-09 09:44:29 +08:00
Xiaoyu Wang
79440f7a26
Merge pull request #19860 from taosdata/fix/3.0_merge_main
...
merge main
2023-02-09 09:22:19 +08:00
Liu Jicong
ae4ad7d851
Merge branch 'main' into enh/stream_buffer_param
2023-02-08 16:09:35 +08:00
Hongze Cheng
89cc687b42
Merge branch '3.0' of https://github.com/taosdata/TDengine into feat/vnode_compact
2023-02-08 13:17:43 +08:00
Xiaoyu Wang
0ec0717263
fix: invild free
2023-02-08 10:35:25 +08:00
Xiaoyu Wang
09925437e3
merge main
2023-02-08 09:51:52 +08:00
Xiaoyu Wang
a52371959e
feat: add ignore update option for create stream
2023-02-07 19:31:08 +08:00
Xiaoyu Wang
e91b9ff47c
fix: keepcolumnname is invalid in nested query
2023-02-07 19:05:41 +08:00
dapan1121
ded47e1312
Merge remote-tracking branch 'origin' into feat/TS-2502
2023-02-06 17:22:18 +08:00
Xiaoyu Wang
f2ff17dace
merge 3.0
2023-02-06 14:18:13 +08:00
dapan1121
a2b5162ab9
Merge pull request #19753 from taosdata/szhou/fixbugs
...
fix: show table distributed only works on super table, child table, and normal table
2023-02-06 08:52:44 +08:00
yihaoDeng
17b7b81cd7
opt index
2023-02-04 10:25:50 +08:00
Xiaoyu Wang
5d499e52f9
merge main
2023-02-03 17:13:11 +08:00
dapan1121
d88f1efeb1
feat: support force fill clause
2023-02-02 17:16:30 +08:00
shenglian zhou
c4366e4dbc
fix: minior, remove blank line
2023-02-02 16:34:20 +08:00
shenglian zhou
3f577c5019
fix: show table distributed only works on super table, child table, and normal table
2023-02-02 11:57:22 +08:00
Xiaoyu Wang
7f571b1ebd
fix: a time point can be fill
2023-02-02 10:59:47 +08:00
Haojun Liao
97ca4dfd0b
Merge pull request #19732 from taosdata/feat/ly_stream_stable
...
Feat/ly stream stable
2023-02-02 10:57:09 +08:00
54liuyao
cea8a920f7
feat(stream): add ci
2023-02-01 17:50:08 +08:00
Xiaoyu Wang
637195ce94
fix: the problem of creating a stream without partition by clause
2023-02-01 17:27:03 +08:00
Xiaoyu Wang
000eefac82
enh: deal coverity scan
2023-01-31 16:16:03 +08:00
Hongze Cheng
11bc53bbd7
Merge branch '3.0' of https://github.com/taosdata/TDengine into feat/vnode_compact
2023-01-31 14:07:58 +08:00
yihaoDeng
474e2e3a32
enh: add/del dynamicIdx
2023-01-29 21:16:47 +08:00
yihaoDeng
bfd711c08f
Merge remote-tracking branch 'origin/3.0' into dynamicIdx
2023-01-18 22:01:49 +08:00
Xiaoyu Wang
57258e2527
fix: support writing streams to existing tables
2023-01-18 12:00:53 +08:00
Xiaoyu Wang
caf3de2959
fix: support writing streams to existing tables
2023-01-18 09:30:54 +08:00
Xiaoyu Wang
2a4c97cfb4
Merge pull request #19606 from taosdata/enh/3.0_planner_optimize
...
feat: support writing streams to existing tables
2023-01-17 18:27:56 +08:00
Xiaoyu Wang
ca43c0ab55
feat: support writing streams to existing tables
2023-01-17 16:47:43 +08:00
Xiaoyu Wang
ac09a05cfa
feat: create stream support delete_mark option
2023-01-17 15:34:58 +08:00
dapan1121
62b64631dc
Merge pull request #19547 from taosdata/fix/TD-21648
...
fix:add interface for odbc
2023-01-16 13:29:15 +08:00
yihaoDeng
3c97e3fc1a
add execute plan
2023-01-13 14:39:50 +08:00
54liuyao
3ec1560faa
create stream and use existing super table
2023-01-13 10:26:49 +08:00
yihaoDeng
72b43d240d
add/delete tag idx
2023-01-12 16:31:55 +08:00
Xiaoyu Wang
0e061fb53c
fix: stmt memory leak
2023-01-12 13:57:47 +08:00
wangmm0220
8af5230bc8
fix:add logic for ins_columns
2023-01-11 23:55:53 +08:00
wangmm0220
3e7aaf6adc
fix:add logic for ins_columns
2023-01-11 14:27:36 +08:00
Xiaoyu Wang
4dca6df296
enh: optimize the error message of the situation that percentile function does not support
2023-01-09 11:50:34 +08:00
wangmm0220
e1020b7967
fix:add interface for taos_get_current_db
2023-01-06 19:20:31 +08:00
Shengliang Guan
3016f35e9f
Merge branch '3.0' into merge/mainto3.0_0105
2023-01-05 16:08:23 +08:00
wangmm0220
730fbe42cb
fix:add logic for system table ins_columns
2023-01-05 14:34:07 +08:00
Hongze Cheng
a046dbb02b
Merge branch '3.0' of https://github.com/taosdata/TDengine into feat/vnode_compact
2023-01-05 13:57:55 +08:00
yihaoDeng
973ebce246
update add/drop index msg
2023-01-04 20:36:01 +08:00
Xiaoyu Wang
90c1ed107c
fix: duplicate column check in 'create stream' command
2023-01-04 17:09:59 +08:00
Xiaoyu Wang
68ac5e5289
enh: clear assert and fix coverity scan
2023-01-04 16:46:02 +08:00
Xiaoyu Wang
9df6f69371
merge 3.0
2023-01-04 15:02:31 +08:00
Xiaoyu Wang
44a867b751
fix: 'show user privilegs' command echo user name incomplete
2023-01-04 14:42:03 +08:00
Xiaoyu Wang
fdde287ca9
merge main
2023-01-04 11:43:20 +08:00
Alex Duan
c0a16094ab
fix: merge from 3.0
2022-12-30 19:02:48 +08:00
Xiaoyu Wang
11306876fa
feat: support writing streams to existing tables
2022-12-30 14:14:03 +08:00
Xiaoyu Wang
aef9dc5908
feat: support writing streams to existing tables
2022-12-30 10:49:05 +08:00
Xiaoyu Wang
bc2fa58280
Merge remote-tracking branch 'origin/3.0' into enh/3.0_planner_optimize
2022-12-30 10:14:47 +08:00
Xiaoyu Wang
de418e8c8d
feat: support writing streams to existing tables
2022-12-30 10:11:41 +08:00
Alex Duan
0c422345b3
feat: support show cluster alive; and show db.alive;
2022-12-29 18:07:57 +08:00
Xiaoyu Wang
3d1b78902f
fix: error in deleting only tag columns
2022-12-29 16:12:52 +08:00
Hongze Cheng
52f1f272fc
Merge branch '3.0' of https://github.com/taosdata/TDengine into feat/vnode_compact
2022-12-29 13:50:08 +08:00
dapan1121
8f9cf766a4
Merge pull request #19214 from taosdata/feat/TD-21454
...
feat(stream):stream insert data into an existing table
2022-12-29 11:28:25 +08:00
Hongze Cheng
de6be90cb5
Merge branch '3.0' of https://github.com/taosdata/TDengine into feat/vnode_compact
2022-12-29 10:00:47 +08:00
Shengliang Guan
2bbf2f3ab1
Merge branch '3.0' into merge/mainto3.0_1229
2022-12-29 09:36:52 +08:00
54liuyao
4734795fe1
feat(stream):stream insert data into an existing table
2022-12-28 17:09:54 +08:00
Xiaoyu Wang
b1d141ecab
fix: prohibit triggering modes other than at_once in non window stream
2022-12-28 16:10:53 +08:00
Xiaoyu Wang
0fd305158d
enh: when there is _wend and _wduration in the query, you can use tsma optimization
2022-12-28 14:07:58 +08:00
Xiaoyu Wang
b52ebb6fd5
feat: sql command 'compact database'
2022-12-27 11:11:02 +08:00
Shengliang Guan
664dcb6b4e
Merge branch 'main' into merge/mainto3.0_1226
2022-12-26 09:26:54 +08:00
Xiaoyu Wang
e62315c244
fix: keepColumnName parameter changes the user alias
2022-12-23 15:12:53 +08:00
Xiaoyu Wang
aecd05cf34
enh: improve unit tests
2022-12-21 13:51:06 +08:00
Xiaoyu Wang
ad7f9b274b
enh: improve unit tests
2022-12-20 16:53:08 +08:00
Xiaoyu Wang
7d15bc670e
Merge remote-tracking branch 'origin/3.0' into enh/mian_wxy
2022-12-18 19:32:32 +08:00
Xiaoyu Wang
6d28232189
fix: create stream error
2022-12-12 17:14:08 +08:00
Xiaoyu Wang
903804883d
fix: create stream error
2022-12-12 15:35:50 +08:00
Xiaoyu Wang
9d6d05c405
merge 3.0
2022-12-12 11:06:52 +08:00
kailixu
4a6f41f7f1
fix: keep option of database with precision ns
2022-12-08 11:56:29 +08:00
Xiaoyu Wang
bc36bc188e
feat: event window
2022-12-08 09:36:37 +08:00
kailixu
3a3bf89cb8
fix: keep option of database with ns precision
2022-12-08 01:39:01 +08:00
Xiaoyu Wang
bc413b8fff
feat: add stream option 'delete_mark'
2022-12-06 16:07:11 +08:00
Shengliang Guan
d9c261cd13
refact: remove some error codes
2022-12-03 10:17:02 +08:00
Xiaoyu Wang
85ea8bbbb3
Merge remote-tracking branch 'origin/3.0' into enh/3.0_planner_optimize
2022-12-02 14:04:50 +08:00
Xiaoyu Wang
64a2bd481c
fix: check subquery time series error
2022-12-02 10:30:23 +08:00
Xiaoyu Wang
67d6ea93b0
enh: ins_table count optimize
2022-12-02 10:02:22 +08:00
Xiaoyu Wang
233377444c
enh: ins_table count optimize
2022-12-01 17:57:53 +08:00
Xiaoyu Wang
4e8acca2eb
feat: sql command 'show user privileges'
2022-11-30 19:24:15 +08:00
Xiaoyu Wang
555f2cb981
merge 3.0
2022-11-29 13:16:54 +08:00
Haojun Liao
3878af10c9
refactor: do some internal refactor.
2022-11-28 16:13:18 +08:00
Xiaoyu Wang
70164f9f20
enh: group by tbname optimize
2022-11-24 15:16:38 +08:00
Xiaoyu Wang
2d86f8e91c
enh: group by tbname optimize
2022-11-23 16:20:54 +08:00
Xiaoyu Wang
469fcd314e
enh: ins_tables optimize
2022-11-21 18:44:04 +08:00
Xiaoyu Wang
d00f65a8fe
Merge remote-tracking branch 'origin/3.0' into enh/3.0_planner_optimize
2022-11-18 15:05:19 +08:00
Xiaoyu Wang
dc0d3745a7
enh: fill value supports implicit type conversion
2022-11-17 15:48:42 +08:00
Xiaoyu Wang
cb0f1f537e
enh: fill value supports implicit type conversion
2022-11-16 17:03:04 +08:00
Xiaoyu Wang
6a50e9e271
Merge remote-tracking branch 'origin/3.0' into enh/3.0_planner_optimize
2022-11-16 10:58:06 +08:00
Xiaoyu Wang
1963761cc2
fix: asan error
2022-11-15 17:27:22 +08:00
Xiaoyu Wang
40c7562470
enh: optimize statement for querying the number of sub tables of the super table
2022-11-15 16:38:51 +08:00
Shengliang Guan
9f38bfa10b
Merge pull request #18123 from taosdata/fix/3.0_bugfix_wxy
...
fix: some problems of parser
2022-11-14 18:03:08 +08:00
Xiaoyu Wang
901c9b8f77
fix: some problems of parser
2022-11-14 16:53:01 +08:00
dapan1121
a5b1cfc9a2
fix: extend show create table result width
2022-11-14 11:27:38 +08:00
Xiaoyu Wang
35b79e7e69
fix: the problem of null in case when expression
2022-11-11 11:24:24 +08:00
Shengliang Guan
8f1c969377
Merge pull request #18027 from taosdata/enh/3.0_planner_optimize
...
enh: show table tags command extension
2022-11-11 09:09:06 +08:00
Xiaoyu Wang
38f20ec32d
enh: show table tags command extension
2022-11-10 17:22:13 +08:00
Xiaoyu Wang
6f7d43c371
fix: case when type error
2022-11-10 13:33:55 +08:00
dapan1121
2f807a85d0
Merge remote-tracking branch 'origin/3.0' into enh/TD-20288
2022-11-09 18:52:00 +08:00
dapan1121
9f7e06721c
enh: support vgroup epset update
2022-11-09 18:48:52 +08:00
Xiaoyu Wang
6298f92d56
fix: some problems of parser
2022-11-09 17:39:28 +08:00
Shengliang Guan
c016266989
Merge pull request #17951 from taosdata/fix/3.0_bugfix_wxy
...
fix: state_window error
2022-11-08 14:48:24 +08:00
Shengliang Guan
36450e6dd7
enh: optimize the error code when create and delete a database in a dropping state
2022-11-08 11:08:14 +08:00
Xiaoyu Wang
2d6c4ebda8
fix: state_window error
2022-11-08 10:18:27 +08:00
Shengliang Guan
68f1641991
Merge pull request #17800 from taosdata/feature/stream
...
refactor(stream): fill history
2022-11-01 16:15:07 +08:00
Liu Jicong
8ca5f0bd9c
Merge branch '3.0' into feature/stream
2022-11-01 13:20:20 +08:00
Xiaoyu Wang
be467a10c7
fix: drop index error
2022-11-01 09:36:33 +08:00
Shengliang Guan
e817e649c6
Merge pull request #17788 from taosdata/enh/TD-19090
...
enh: force drop dnode
2022-10-31 23:27:54 +08:00
Liu Jicong
2e640c38a2
refactor: stream and tmq message
2022-10-31 18:37:28 +08:00
54liuyao
f1e3e0892a
fix(planner):add semantic check
2022-10-31 16:17:53 +08:00
Xiaoyu Wang
ae4354c277
enh: add sql command 'drop dnode id force'
2022-10-31 10:30:54 +08:00
Xiaoyu Wang
02ac6fa552
enh: add unit test and delete useless code
2022-10-26 17:01:55 +08:00
Xiaoyu Wang
cb41374c90
Merge remote-tracking branch 'origin/3.0' into fix/3.0_bugfix_wxy
2022-10-26 11:11:18 +08:00
Xiaoyu Wang
db75eb8e20
fix: stream supports 'partition by tbname, column'
2022-10-26 10:20:00 +08:00
dapan1121
3fa1f535f1
Merge pull request #17609 from taosdata/fix/interpStable
...
fix: remove interp stable limitation and add test case
2022-10-26 09:59:42 +08:00
Xiaoyu Wang
b7056f58b7
fix: alter table check
2022-10-25 16:59:05 +08:00
dapan1121
af6a9aeb13
fix: remove interp stable limitation and add test case
2022-10-24 17:46:21 +08:00
Xiaoyu Wang
0fdce91b5a
fix: wrong permissions of 'show variables' command
2022-10-24 16:34:10 +08:00
Xiaoyu Wang
5e970f1506
Merge remote-tracking branch 'origin/3.0' into fix/3.0_bugfix_wxy
2022-10-21 10:18:26 +08:00
Xiaoyu Wang
2339b8c0a6
some parser problem
2022-10-20 16:53:26 +08:00
dapan1121
723110c449
feat: add retrieve db and table route info API
2022-10-19 19:25:02 +08:00
Shengliang Guan
3a7d89a6bb
refact: remove bnode codes
2022-10-18 17:34:58 +08:00
Xiaoyu Wang
78589248f2
Merge branch '3.0' into fix/3.0_bugfix_wxy
2022-10-18 09:53:08 +08:00
Xiaoyu Wang
b286b0cf26
fix: do coverity scan
2022-10-17 16:18:35 +08:00
Xiaoyu Wang
9abea76791
fix: do coverity scan
2022-10-17 15:43:42 +08:00
Xiaoyu Wang
bb3bb18c01
fix: problem when last is used for system table query
2022-10-14 16:24:00 +08:00
Xiaoyu Wang
9a946541a2
enh: do coverity scan
2022-10-13 18:14:44 +08:00
Xiaoyu Wang
242a53c285
enh: do coverity scan
2022-10-13 17:03:40 +08:00
Xiaoyu Wang
7a19119dc7
Merge remote-tracking branch 'origin/3.0' into enh/3.0_planner_optimize
2022-10-13 16:44:41 +08:00
Xiaoyu Wang
3cce178721
enh: do coverity scan
2022-10-13 16:43:56 +08:00
Shengliang Guan
ebf330fad2
Merge pull request #17309 from taosdata/fix/3.0_bugfix_wxy
...
fix: some problems of parser
2022-10-13 13:58:13 +08:00
Xiaoyu Wang
d6374a726a
fix: some problems of parser
2022-10-12 16:32:29 +08:00
Ganlin Zhao
928fd0b13f
fix(query): interp with every(0s) casuing client crash
...
TD-19484
2022-10-12 10:39:49 +08:00
Xiaoyu Wang
947e9d6458
fix: some problems of parser
2022-10-12 10:16:29 +08:00
Liu Jicong
2f9aeeb5fc
feat(stream): support define table name
2022-10-09 16:54:27 +08:00
Xiaoyu Wang
3d1bf6f50d
fix: query information_schema.ins_tags error
2022-09-30 17:57:04 +08:00
Xiaoyu Wang
3ed27805c3
fix: query information_schema.ins_tags error
2022-09-30 14:43:51 +08:00
Xiaoyu Wang
73642ac3a2
feat: sql command 'show table tags from table_name'
2022-09-29 16:16:49 +08:00
Xiaoyu Wang
06bb551b70
enh: query information_schema.ins_tags optimize
2022-09-28 18:55:33 +08:00
Xiaoyu Wang
48c9373680
enh: query information_schema.ins_tags optimize
2022-09-28 17:00:02 +08:00
Xiaoyu Wang
8caa36299c
feat: add the _irowts pseudo column to output the timestamp of the interp
2022-09-27 15:23:24 +08:00
Xiaoyu Wang
1d62834e5c
feat(stream): tag and child table name improvement
2022-09-26 18:39:47 +08:00
Shengliang Guan
f80068bbe6
Merge pull request #17011 from taosdata/feat/3.0_parser_planner
...
feat: case when expression
2022-09-23 11:41:57 +08:00
Xiaoyu Wang
50ebcb5006
feat: case when expression
2022-09-22 19:20:21 +08:00
Xiaoyu Wang
cf39f2e20c
fix: window pseudo column check
2022-09-22 18:15:11 +08:00
Xiaoyu Wang
62b9419351
fix: window pseudo column check
2022-09-22 17:27:30 +08:00
Xiaoyu Wang
9f45f81aa0
fix: join validity check
2022-09-22 16:54:39 +08:00
wangmm0220
e3bc2487b3
Merge branch '3.0' of https://github.com/taosdata/TDengine into fix/TD-18740
2022-09-16 19:00:49 +08:00
wangmm0220
414021a8e0
fix:error in auto create table for taosX
2022-09-15 19:23:12 +08:00
Liu Jicong
deb731c1c4
Merge pull request #16840 from taosdata/enh/3.0_planner_optimize
...
enh: the delete physical plan increases the timestamp interval of the actual deleted data
2022-09-15 10:56:08 +08:00
Xiaoyu Wang
e2586979eb
enh: the delete physical plan increases the timestamp interval of the actual deleted data
2022-09-14 17:51:21 +08:00
dapan1121
5589f78b32
Merge pull request #16779 from taosdata/fix/memLeakIssue
...
fix: fix client/server memory leak issues
2022-09-14 17:42:12 +08:00
Xiaoyu Wang
d585c20aa3
enh: count(tbname) optimize
2022-09-13 18:58:56 +08:00
Xiaoyu Wang
6cf578f299
feat: database option 'tsdb_pagesize'
2022-09-13 14:19:50 +08:00
dapan1121
4fd0bc409d
fix: fix client/server memory leak issues
2022-09-13 09:09:21 +08:00
Hongze Cheng
eae7947c68
more refact
2022-09-08 17:58:33 +08:00
dapan1121
851ffe49ae
enh: support set tag value with expr
2022-09-07 10:25:21 +08:00
dapan1121
4a563b6d50
fix: fix now in alter tag value
2022-09-06 19:17:11 +08:00
Xiaoyu Wang
ccaf6f8a78
feat: add database option 'table_prefix' and 'table_suffix'
2022-09-03 11:22:36 +08:00
Xiaoyu Wang
594e4b376e
feat: sql command 'show vnodes' and database option 'sst_trigger'
2022-09-01 19:01:37 +08:00
Shengliang Guan
8652074fad
Merge pull request #16536 from taosdata/feature/TD-14761
...
fix: add filter logic for tmq in stable wal
2022-08-31 19:22:11 +08:00
wangmm0220
c5874ca892
fix: add filter logic for tmq in stable wal
2022-08-31 18:32:28 +08:00
Shengliang Guan
d0669151af
Merge pull request #16527 from taosdata/enh/3.0_planner_optimize
...
enh: query get dbcfg optimization
2022-08-31 13:33:01 +08:00
Xiaoyu Wang
2ccc7471af
enh: query get dbcfg optimization
2022-08-31 11:36:59 +08:00
dapan1121
39569cbd9a
enh: move some tables from perf to ins
2022-08-30 13:49:35 +08:00
Shengliang Guan
52f8fbb997
Merge pull request #16473 from taosdata/enh/3.0_planner_optimize
...
enh: super table scan requires project operator to merge packets to improve performance
2022-08-30 09:07:52 +08:00
Xiaoyu Wang
b5e177f151
fix: some problems of parser
2022-08-29 18:52:00 +08:00
Xiaoyu Wang
cc1d37cfe5
fix: some problems of parser
2022-08-29 17:23:29 +08:00
Xiaoyu Wang
4895f19876
fix: plan problem with sorting the first column of the system table
2022-08-25 18:39:23 +08:00
Xiaoyu Wang
99490c063e
feat: system table visible permission
2022-08-24 17:36:10 +08:00
Ganlin Zhao
00b2db50b4
fix(query): restrict fill(none) in interp
...
TD-18531
2022-08-23 10:40:01 +08:00
Xiaoyu Wang
4cf9bd6ac1
fix: the syntax problem of querying the state value in the state window
2022-08-22 17:46:57 +08:00
Ganlin Zhao
02055c4a90
fix error msg
2022-08-19 18:16:46 +08:00
Ganlin Zhao
0993843c81
fix(query): fix "n","y" time unit parsing does not return error
2022-08-19 18:13:01 +08:00
Xiaoyu Wang
39c3cde285
fix: select constant error
2022-08-16 10:37:17 +08:00
slzhou
64121d7b8f
Merge branch 'szhou/fix/leave' of github.com:taosdata/TDengine into szhou/fix/leave
2022-08-12 14:54:26 +08:00
slzhou
d9eae4dd4c
fix : fix error caused by empty vgroups when no user tables
2022-08-12 14:54:12 +08:00
Xiaoyu Wang
03a39381c0
enh: show command optimize
2022-08-12 00:07:24 +08:00
Xiaoyu Wang
4155a3bef4
enh: show command optimize
2022-08-11 21:55:20 +08:00
Xiaoyu Wang
7176bb9198
merge 3.0
2022-08-11 20:30:02 +08:00
Xiaoyu Wang
9a9aef985e
enh: show command optimize
2022-08-11 20:26:40 +08:00
Ganlin Zhao
c017e4387f
fix(query): forbid interp in super table query
...
TD-18331
2022-08-11 16:17:38 +08:00
Xiaoyu Wang
4f0c6d3aa4
enh: show command optimize
2022-08-11 15:37:26 +08:00
Xiaoyu Wang
7a559084ae
fix: add checks for stream query
2022-08-08 14:38:04 +08:00