fsprojects / DynamoDb.SQL

SQL-like external DSL for querying and scanning Amazon DynamoDB
http://fsprojects.github.io/DynamoDb.SQL
MIT License
54 stars 9 forks source link

Error on queries on tables with special characters in their names #24

Closed andyg75 closed 9 years ago

andyg75 commented 9 years ago

I tried querying a table with a "." in it's name. I get the following error: "Expecting: 'where' (case-insensitive)". I get the same error when the table has a hyphen in its name.

I tried using brackets around the table name, as one would do in a SQL client. No luck. I get this error in that case: "Expecting: table name"

theburningmonk commented 9 years ago

This was fixed by this PR : https://github.com/fsprojects/DynamoDb.SQL/pull/22 I just haven't got around to adding some other features I wanted for the next release.

I'll do an intermediate release shortly that includes a fix for that.

andyg75 commented 9 years ago

Thanks, apologies for the dupe. This looks like a really great app.

theburningmonk commented 9 years ago

pushed a new package which should allow those special characters