Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Roseseed
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Wanxin Li
Roseseed
Commits
0f148daf
Commit
0f148daf
authored
5 years ago
by
Wanxin Li
Browse files
Options
Downloads
Patches
Plain Diff
update README.md
parent
42f7b264
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+45
-1
45 additions, 1 deletion
README.md
with
45 additions
and
1 deletion
README.md
+
45
−
1
View file @
0f148daf
...
@@ -77,4 +77,48 @@ valid.
...
@@ -77,4 +77,48 @@ valid.
Also the Makefile only has two commands,
`make`
and
`make clean`
.
`make`
will
Also the Makefile only has two commands,
`make`
and
`make clean`
.
`make`
will
create both the SQLPParser and Parser programs to do what was described above.
create both the SQLPParser and Parser programs to do what was described above.
Maybe this should be changed in the future to be separate but we'll leave that
Maybe this should be changed in the future to be separate but we'll leave that
discussion for the future.
discussion for the future.
\ No newline at end of file
Added in Spring 2019:
Entity descriptions for algebra in lisp form. There are two sorts of operators:
(1) operators producing normal tables with an ordered finite sequence of attribute
names, and (2) operators producing “column tables”, where tuples are a possibly
infinite set of “SQLP column name”/“constant” pairs.
<query>
(1)
( select
<set-or-bag>
<limit>
(as-list
<as>
… )
<body>
)
( union
<set-or-bag>
<limit>
(query-list
<query>
… ) )
<set-or-bag>
distinct
all
<limit>
( limit
<integer-constant>
)
( no-limit )
<as>
( as
<column>
<attribute-name>
)
<body>
(2)
<pred>
( atom
<table-name>
<var>
)
( natural-join-list
<body>
… )
( sub-query
<query>
<var>
)
<pred>
( equal
<term>
<term>
)
( less-than
<term>
<term>
)
( less-than-or-equal
<term>
<term>
)
( exists
<body>
)
( not
<pred>
)
( and-list
<pred>
… )
( or-list
<pred>
… )
<term>
<column>
( integer
<integer-constant>
)
( string
<string-constant>
)
<column>
( column
<var>
( attribute-name-list
<attribute-name>
… ) )
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment