We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How could a reference be interpolated in a string?
table person ( kevin (name 'Kevin') (name 'Also ${@kevin.name} too')
Patterns like ${..} or #{..} are common in other languages, but maybe something simpler would suffice, such as automatic concatenation:
${..}
#{..}
table person ( kevin (name 'Kevin') -- Without spaces okay (name 'Also '@kevin.name' too') -- compared to... (name 'Also #{@kevin.name} too') -- with spaces, too (name 'Also ' @kevin.name ' too') -- compared to... (name 'Also #{ @kevin.name } too')
Feels like the fewer special characters the better, from the perspective of a parser or a reader/typer.
Note: Since a reference could be for a column populated by database, there is no guarantee that the referenced value exists at parse time.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How could a reference be interpolated in a string?
Patterns like
${..}
or#{..}
are common in other languages, but maybe something simpler would suffice, such as automatic concatenation:Feels like the fewer special characters the better, from the perspective of a parser or a reader/typer.
Note: Since a reference could be for a column populated by database, there is no guarantee that the referenced value exists at parse time.
The text was updated successfully, but these errors were encountered: