mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-17 05:20:37 +00:00
* feat: add insert test cases * fix: update results after rebase develop * feat: supports unsigned integer types and big_insert test * test: add insert_invalid test * feat: supports time index constraint for bigint type * chore: time index column at last * test: adds more order, limit test * fix: style * feat: adds numbers table in standable memory catalog mode * feat: enable fail_fast and test_filter in sqlness * feat: add more tests * fix: test_filter * test: add alter tests * feat: supports if_not_exists when create database * test: filter_push_down and catalog test * fix: compile error * fix: delete output file * chore: ignore integration test output in git * test: update all integration test results * fix: by code review * chore: revert .gitignore * feat: sort the show tables/databases results * chore: remove issue link * fix: compile error and code format after rebase * test: update all integration test results
25 lines
862 B
SQL
25 lines
862 B
SQL
CREATE TABLE test (a BIGINT TIME INDEX, b INTEGER);
|
|
|
|
INSERT INTO test VALUES (11, 22), (12, 21), (13, 22);
|
|
|
|
SELECT a FROM test ORDER BY 2;
|
|
|
|
-- Not work in greptimedb
|
|
SELECT a FROM test ORDER BY 'hello', a;
|
|
|
|
-- Ambiguous reference in union alias, give and error in duckdb, but works in greptimedb
|
|
SELECT a AS k, b FROM test UNION SELECT a, b AS k FROM test ORDER BY k;
|
|
|
|
SELECT a AS k, b FROM test UNION SELECT a AS k, b FROM test ORDER BY k;
|
|
|
|
SELECT a % 2, b FROM test UNION SELECT b, a % 2 AS k ORDER BY a % 2;
|
|
|
|
-- Works duckdb, but not work in greptimedb
|
|
SELECT a % 2, b FROM test UNION SELECT a % 2 AS k, b FROM test ORDER BY a % 2;
|
|
|
|
SELECT a % 2, b FROM test UNION SELECT a % 2 AS k, b FROM test ORDER BY 3;
|
|
|
|
SELECT a % 2, b FROM test UNION SELECT a % 2 AS k, b FROM test ORDER BY -1;
|
|
|
|
SELECT a % 2, b FROM test UNION SELECT a % 2 AS k FROM test ORDER BY -1;
|