issue-22: Fixed expressions so that queries will be executed as queries (#25)
Augmented expressions so that queries that can be executed as queries on DynamoDB can be done so. Also added an IR tree which is a simplified representation of the AST and will be used to plan the query.
This commit is contained in:
parent
0063d7c6d5
commit
a1717572c5
13 changed files with 492 additions and 101 deletions
|
|
@ -22,3 +22,7 @@ func (a *astLiteralValue) goValue() (any, error) {
|
|||
}
|
||||
return s, nil
|
||||
}
|
||||
|
||||
func (a *astLiteralValue) String() string {
|
||||
return a.StringVal
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue