forked from GreptimeTeam/greptimedb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(mito): avoid caching empty batches in row group (GreptimeTeam#4652)
* fix: avoid caching empty batches in row group * fix: clippy * Update tests/cases/standalone/common/select/last_value.sql * fix: sqlness
- Loading branch information
1 parent
00481a1
commit 4dd912c
Showing
3 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
create table t ( | ||
ts timestamp time index, | ||
host string primary key, | ||
not_pk string, | ||
val double, | ||
) with (append_mode='true'); | ||
|
||
Affected Rows: 0 | ||
|
||
insert into t values | ||
(0, 'a', '🌕', 1.0), | ||
(1, 'b', '🌖', 2.0), | ||
(2, 'a', '🌗', 3.0), | ||
(3, 'c', '🌘', 4.0), | ||
(4, 'a', '🌑', 5.0), | ||
(5, 'b', '🌒', 6.0), | ||
(6, 'a', '🌓', 7.0), | ||
(7, 'c', '🌔', 8.0), | ||
(8, 'd', '🌕', 9.0); | ||
|
||
Affected Rows: 9 | ||
|
||
admin flush_table('t'); | ||
|
||
+------------------------+ | ||
| ADMIN flush_table('t') | | ||
+------------------------+ | ||
| 0 | | ||
+------------------------+ | ||
|
||
select | ||
last_value(host order by ts), | ||
last_value(not_pk order by ts), | ||
last_value(val order by ts) | ||
from t | ||
group by host | ||
order by host; | ||
|
||
+---------------------------------------------------+-----------------------------------------------------+--------------------------------------------------+ | ||
| last_value(t.host) ORDER BY [t.ts ASC NULLS LAST] | last_value(t.not_pk) ORDER BY [t.ts ASC NULLS LAST] | last_value(t.val) ORDER BY [t.ts ASC NULLS LAST] | | ||
+---------------------------------------------------+-----------------------------------------------------+--------------------------------------------------+ | ||
| a | 🌓 | 7.0 | | ||
| b | 🌒 | 6.0 | | ||
| c | 🌔 | 8.0 | | ||
| d | 🌕 | 9.0 | | ||
+---------------------------------------------------+-----------------------------------------------------+--------------------------------------------------+ | ||
|
||
-- repeat the query again, ref: https://github.com/GreptimeTeam/greptimedb/issues/4650 | ||
select | ||
last_value(host order by ts), | ||
last_value(not_pk order by ts), | ||
last_value(val order by ts) | ||
from t | ||
group by host | ||
order by host; | ||
|
||
+---------------------------------------------------+-----------------------------------------------------+--------------------------------------------------+ | ||
| last_value(t.host) ORDER BY [t.ts ASC NULLS LAST] | last_value(t.not_pk) ORDER BY [t.ts ASC NULLS LAST] | last_value(t.val) ORDER BY [t.ts ASC NULLS LAST] | | ||
+---------------------------------------------------+-----------------------------------------------------+--------------------------------------------------+ | ||
| a | 🌓 | 7.0 | | ||
| b | 🌒 | 6.0 | | ||
| c | 🌔 | 8.0 | | ||
| d | 🌕 | 9.0 | | ||
+---------------------------------------------------+-----------------------------------------------------+--------------------------------------------------+ | ||
|
||
drop table t; | ||
|
||
Affected Rows: 0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
create table t ( | ||
ts timestamp time index, | ||
host string primary key, | ||
not_pk string, | ||
val double, | ||
) with (append_mode='true'); | ||
|
||
insert into t values | ||
(0, 'a', '🌕', 1.0), | ||
(1, 'b', '🌖', 2.0), | ||
(2, 'a', '🌗', 3.0), | ||
(3, 'c', '🌘', 4.0), | ||
(4, 'a', '🌑', 5.0), | ||
(5, 'b', '🌒', 6.0), | ||
(6, 'a', '🌓', 7.0), | ||
(7, 'c', '🌔', 8.0), | ||
(8, 'd', '🌕', 9.0); | ||
|
||
admin flush_table('t'); | ||
|
||
select | ||
last_value(host order by ts), | ||
last_value(not_pk order by ts), | ||
last_value(val order by ts) | ||
from t | ||
group by host | ||
order by host; | ||
|
||
-- repeat the query again, ref: https://github.com/GreptimeTeam/greptimedb/issues/4650 | ||
select | ||
last_value(host order by ts), | ||
last_value(not_pk order by ts), | ||
last_value(val order by ts) | ||
from t | ||
group by host | ||
order by host; | ||
|
||
drop table t; |