forked from kuzudb/kuzu
-
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.
Make use of the data offset when calculating the minimum and maximum values of column updates Also make use of null data to avoid including stats for placeholder data used for null values (cherry picked from commit 35eee92)
- Loading branch information
1 parent
3f07c62
commit dbf22e0
Showing
4 changed files
with
59 additions
and
17 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
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,17 @@ | ||
-DATASET CSV tinysnb | ||
|
||
-- | ||
-CASE CopyRelStatistics | ||
-STATEMENT CALL storage_info('knows') WHERE column_name = "bwd_date" RETURN min, max; | ||
---- 1 | ||
1905-12-12|2021-06-30 | ||
-STATEMENT CALL storage_info('knows') WHERE column_name = "fwd_date" RETURN min, max; | ||
---- 1 | ||
1905-12-12|2021-06-30 | ||
|
||
-STATEMENT CALL storage_info('knows') WHERE column_name = "bwd_meetTime" RETURN min, max; | ||
---- 1 | ||
1936-11-02 11:02:01|2025-01-01 11:22:33.52 | ||
-STATEMENT CALL storage_info('knows') WHERE column_name = "fwd_meetTime" RETURN min, max; | ||
---- 1 | ||
1936-11-02 11:02:01|2025-01-01 11:22:33.52 |
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