mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
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
|
|
}
|
|
|