mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-07-04 13:00:38 +00:00
* test: add recent sqlness compat cases Signed-off-by: discord9 <discord9@163.com> * test: add more sqlness compat cases Signed-off-by: discord9 <discord9@163.com> --------- Signed-off-by: discord9 <discord9@163.com>
11 lines
191 B
SQL
11 lines
191 B
SQL
SELECT host, ts, cpu, memory
|
|
FROM t_last_row_merge
|
|
ORDER BY host, ts;
|
|
|
|
SELECT host, cpu, memory
|
|
FROM t_last_row_merge
|
|
WHERE memory IS NULL
|
|
ORDER BY host;
|
|
|
|
SHOW CREATE TABLE t_last_row_merge;
|