mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* restore .gitmodules * Revert "[TD-13408]<test>: move tests out" This reverts commitf80a4ca49f. * revertf80a4ca49f* immigrate file change from stand-alone repo to TDengine for 3.0 * remove tests repository for Jenkinsfile2 Co-authored-by: tangfangzhi <fztang@taosdata.com>
27 lines
448 B
Text
27 lines
448 B
Text
This file contains a brief info about the parser test scripts directory.
|
|
|
|
The directory contains scripts for TDengine parser testing, mainly focus on syntax parsing and datatype support. The tests are organized in the way database languages are catagorized.
|
|
|
|
DML:
|
|
{
|
|
SELECT
|
|
INSERT
|
|
INTERVAL
|
|
FILL
|
|
DESCRIBE
|
|
SHOW
|
|
}
|
|
|
|
DDL:
|
|
{
|
|
CREATE DATABASE/METRIC/TABLE
|
|
DROP DATABASE/METRIC/TABLE
|
|
}
|
|
|
|
DCL:
|
|
{
|
|
CREATE ACCOUNT/USER
|
|
DROP ACCOUNT/USER
|
|
*ALTER USER PRIVILEGE
|
|
}
|
|
|