Skip to content

Commit

Permalink
Add issue template for performance optimization category (kuzudb#3535)
Browse files Browse the repository at this point in the history
* fix the result of OrderByFlatUnflat1 on all platforms

* add issue template for performance optimization

* rename title prefix

* new line
  • Loading branch information
ray6080 authored May 24, 2024
1 parent 2de52f2 commit 300e322
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/optimization.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Performance optimization suggestion
description: Suggestion a new performance optimization idea for Kùzu
title: "Optimization: "
labels: [performance optimization]
body:
- type: markdown
attributes:
value: |
Share a new idea for improving Kùzu's performance.
- type: textarea
id: description
attributes:
label: Description
description: |
Describe the idea and why it would be useful.
validations:
required: true
15 changes: 13 additions & 2 deletions test/test_files/tinysnb/order_by/single_label.test
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,21 @@ Elizabeth
7|8

-LOG OrderByFlatUnflat1
-STATEMENT MATCH (p:person)-[:knows]->(p1:person) return p.ID, p1.ID ORDER BY p.ID limit 3
-STATEMENT MATCH (p:person)-[:knows]->(p1:person) return p.ID, p1.ID ORDER BY p.ID, p1.ID
-CHECK_ORDER
-ENUMERATE
---- 3
---- 14
0|2
0|3
0|5
2|0
2|3
2|5
3|0
3|2
3|5
5|0
5|2
5|3
7|8
7|9

0 comments on commit 300e322

Please sign in to comment.