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:
Leon Mika 2022-09-19 21:14:03 +10:00 committed by GitHub
parent 0063d7c6d5
commit a1717572c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 492 additions and 101 deletions

View file

@ -22,3 +22,7 @@ func (a *astLiteralValue) goValue() (any, error) {
}
return s, nil
}
func (a *astLiteralValue) String() string {
return a.StringVal
}