Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ FROM 'https://data.gharchive.org/2015-01-01-15.json.gz'
LIMIT 5
| FORK
( FROM eval(f'https://api.github.com/users/{user}')
SELECT VALUE {user:login,created_at:created_at::time} )
SELECT login AS user, created_at::time AS created_at )
( PASS )
| JOIN USING (user)
| VALUES {...left,repos:right.repos}
Expand Down
1 change: 0 additions & 1 deletion compiler/ast/sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ type (
SQLSelect struct {
Kind string `json:"kind" unpack:""`
Distinct bool `json:"distinct"`
Value bool `json:"value"`
Selection SQLSelection `json:"selection"`
From *FromOp `json:"from"` // XXX from clause?
Where Expr `json:"where"`
Expand Down
Loading