This repository has been archived by the owner on Nov 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 201
MySQL, Postgres, Redshift and Redis Language Support #26
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
neico
reviewed
Nov 12, 2017
package.json
Outdated
@@ -1,6 +1,6 @@ | |||
{ | |||
"name": "monaco-languages", | |||
"version": "0.9.0", | |||
"name": "@teamsqlio/monaco-languages", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this shouldn't be in a PR to be merged upstream
Thank you! ❤️ This is great ! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added language support for
Our product ( TeamSQL ) uses Monaco Editor and we currently support databases above and plus MSSQL. MSSQL is currently supported by default.
MySQL
Specific MySQL keywords, operators and builtin functions are updated. Also added double quote support for strings.
Comment lines are defined by -- or /* but MySQL also supports # symbol for commenting.
` (backtick) is quoted identifier in MySQL.
Postgres
Specific Postgres keywords, operators and builtin functions are updated.
" (double quote) is quoted identifier in Postgres.
Redshift
Same as Postgres but different keywords and builtin functions.
Redis
There is no commenting and quoted identifiers in Redis, so removed these identifiers. Added all Redis commands to keywords.
Redis supports single and dobule quote strings.