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
57 lines
1.3 KiB
SQL
57 lines
1.3 KiB
SQL
CREATE TABLE test (a BIGINT time index, b INTEGER);
|
|
|
|
INSERT INTO test VALUES (11, 22), (12, 21), (13, 22);
|
|
|
|
SELECT a FROM test LIMIT 1;
|
|
|
|
SELECT a FROM test LIMIT 1.25;
|
|
|
|
SELECT a FROM test LIMIT 2-1;
|
|
|
|
SELECT a FROM test LIMIT a;
|
|
|
|
SELECT a FROM test LIMIT a+1;
|
|
|
|
SELECT a FROM test LIMIT SUM(42);
|
|
|
|
SELECT a FROM test LIMIT row_number() OVER ();
|
|
|
|
CREATE TABLE test2 (a STRING, ts BIGINT TIME INDEX);
|
|
|
|
INSERT INTO test2 VALUES ('Hello World', 1);
|
|
|
|
SELECT * FROM test2 LIMIT 3;
|
|
|
|
select 1 limit date '1992-01-01';
|
|
|
|
CREATE TABLE integers(i BIGINT TIME INDEX);
|
|
|
|
INSERT INTO integers VALUES (1), (2), (3), (4), (5);
|
|
|
|
SELECT * FROM integers LIMIT 3;
|
|
|
|
SELECT * FROM integers LIMIT 4;
|
|
|
|
SELECT * FROM integers as int LIMIT (SELECT MIN(integers.i) FROM integers);
|
|
|
|
|
|
SELECT * FROM integers as int OFFSET (SELECT MIN(integers.i) FROM integers);
|
|
|
|
SELECT * FROM integers as int LIMIT (SELECT MAX(integers.i) FROM integers) OFFSET (SELECT MIN(integers.i) FROM integers);
|
|
|
|
SELECT * FROM integers as int LIMIT (SELECT max(integers.i) FROM integers where i > 5);
|
|
|
|
SELECT * FROM integers as int LIMIT (SELECT max(integers.i) FROM integers where i > 5);
|
|
|
|
SELECT * FROM integers as int LIMIT (SELECT NULL);
|
|
|
|
SELECT * FROM integers as int LIMIT (SELECT -1);
|
|
|
|
SELECT * FROM integers as int LIMIT (SELECT 'ab');
|
|
|
|
DROP TABLE integers;
|
|
|
|
DROP TABLE test;
|
|
|
|
DROP TABLE test2;
|