Created
January 16, 2023 16:57
-
-
Save ghalimi/55730dd74884b8a95980a8cad51c99b7 to your computer and use it in GitHub Desktop.
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
# query -> SELECT * FROM table | |
{ | |
"select_query" : { | |
"select_node" : { | |
"projection_list": [ | |
{ | |
"type": "star_expression" | |
} | |
], | |
"from_clause": [ | |
{ | |
"type": "tableref", | |
"table_name": "table" | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome, thanks !