mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-07-03 20:40:37 +00:00
* test: add sqlness compatibility runner Signed-off-by: discord9 <discord9@163.com> * fix: update remote dyn filter request Signed-off-by: discord9 <discord9@163.com> * fix: satisfy compat runner clippy Signed-off-by: discord9 <discord9@163.com> * test: add legacy jsonb compatibility case Signed-off-by: discord9 <discord9@163.com> * test: align legacy jsonb compat assertion Signed-off-by: discord9 <discord9@163.com> * fix: align remote dyn filter proto fields Signed-off-by: discord9 <discord9@163.com> * test: simplify compat topology and SQL handling Signed-off-by: discord9 <discord9@163.com> * fix: switch compat runner to target binary Signed-off-by: discord9 <discord9@163.com> * test: drop compat SQLNESS comment handling Signed-off-by: discord9 <discord9@163.com> * test: support sqlness commands in compat Signed-off-by: discord9 <discord9@163.com> * test: fix compat protocol reconnect Signed-off-by: discord9 <discord9@163.com> * test: filter compat cases by version Signed-off-by: discord9 <discord9@163.com> * test: add merge mode compat case Signed-off-by: discord9 <discord9@163.com> * test: harden compat runner setup Signed-off-by: discord9 <discord9@163.com> * test: address compat review follow-ups Signed-off-by: discord9 <discord9@163.com> * test: tighten compat case validation Signed-off-by: discord9 <discord9@163.com> * test: require explicit compat expectations Signed-off-by: discord9 <discord9@163.com> * test: generate missing compat snapshots Signed-off-by: discord9 <discord9@163.com> * test: add compat dry run Signed-off-by: discord9 <discord9@163.com> --------- Signed-off-by: discord9 <discord9@163.com>
13 lines
492 B
Plaintext
13 lines
492 B
Plaintext
SELECT ts, i, s, f FROM foo ORDER BY ts;
|
|
|
|
+---------------------+---+----------+-----+
|
|
| ts | i | s | f |
|
|
+---------------------+---+----------+-----+
|
|
| 2024-02-01T17:00:00 | 1 | my_tag_1 | |
|
|
| 2024-02-01T18:00:00 | 2 | my_tag_2 | |
|
|
| 2024-02-01T19:00:00 | 3 | my_tag_3 | |
|
|
| 2024-02-01T20:00:00 | 4 | my_tag_4 | 4.4 |
|
|
| 2024-02-01T21:00:00 | 5 | my_tag_5 | 5.5 |
|
|
| 2024-02-01T22:00:00 | 6 | my_tag_6 | 6.6 |
|
|
+---------------------+---+----------+-----+
|