You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/copilot-instructions.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ AlaSQL is an open source SQL database for JavaScript with a focus on query speed
7
7
## When Implementing Features
8
8
9
9
1.**Understand the issue thoroughly** - Read related test cases and existing code
10
-
2.**Write a test first** - Copy test/test000.js into a new file called `test/test###.js` where where `###` is the id of the issue we are trying to solve
10
+
2.**Write a test first** - Copy test/test000.js into a new file called `test/test###.js` where where `###` is the id of the issue we are trying to solve.
11
11
3.**Verify test fails** - Run `yarn test` to confirm the test catches the issue
12
12
4.**Implement the fix** - Modify appropriate file(s) in `src/`
13
13
- If you modify the grammar in `src/alasqlgrammar.jison`, run `yarn jison && yarn test` to regenerate the parser and verify
@@ -37,3 +37,12 @@ yarn format
37
37
-`src/alasqlparser.js` - Generated from Jison grammar (modify the `.jison` file instead)
38
38
-`.min.js` files - Generated during build
39
39
40
+
41
+
## Plesae note
42
+
43
+
- Alasql is meant to return `undefined` instead of `null` (unline regular SQL engines)
0 commit comments