Created
December 26, 2014 15:20
-
-
Save erasmas/cbc348b3c95d961a9b19 to your computer and use it in GitHub Desktop.
Why combined query doesn't have :available-fields? #cascalog
This file contains hidden or 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
| (let [source1 [[1 2 3]] | |
| source2 [[4 5 6]] | |
| fields ["?a" "?b" "?c"] | |
| query (combine | |
| (<- fields | |
| (source1 :>> fields)) | |
| (<- fields | |
| (source2 :>> fields)))] | |
| (:available-fields query)) | |
| => nil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment