-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A defpurefun selector function was being declared in the top-level module, and which used qualified names to access columns directly in the bin module. This should have actually been reported as a syntax error. Instead, defun should be used and this changes it accordingly.
- Loading branch information
1 parent
8720bd5
commit 2a83367
Showing
3 changed files
with
3 additions
and
3 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
(defpurefun (sel-logdata-to-rlptxnrcpt) | ||
(defun (sel-logdata-to-rlptxnrcpt) | ||
logdata.LOGS_DATA) | ||
|
||
(deflookup | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
(defpurefun (sel-loginfo-to-logdata) | ||
(defun (sel-loginfo-to-logdata) | ||
loginfo.TXN_EMITS_LOGS) | ||
|
||
(deflookup | ||
|