-
Notifications
You must be signed in to change notification settings - Fork 3
feat: support experimental access to ast #108
New issue
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
Open
carsonfarmer
wants to merge
15
commits into
main
Choose a base branch
from
carson/exprmtl-ast
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 7 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
82eface
feat: support experimental access to ast
carsonfarmer e1aa000
chore: update tinygo version
carsonfarmer 1453364
chore: make linter happy
carsonfarmer 88b828d
feat: parse and deparse create statements
carsonfarmer d33278d
Merge branch 'main' into carson/exprmtl-ast
carsonfarmer bef1dac
Merge branch 'main' into carson/exprmtl-ast
joewagner dd5f386
chore: add build step for go-types
carsonfarmer b0ff2f0
chore: use && over ;
carsonfarmer 95586be
chore: don't forget to format;
carsonfarmer 73297bb
fix: run from full path + gitignore
carsonfarmer d137cab
chore: update go version + attempt build types
carsonfarmer a9d113f
feat: update go-types, they got lost somehow
carsonfarmer aeb26d6
wip: a further step towards supporting ast
carsonfarmer 2f56b4b
feat: roundtrip works with limits
carsonfarmer 671e1a1
chore: linter fix
carsonfarmer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| .vscode | ||
| .vscode | ||
| .DS_Store | ||
| diagrams* |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,94 @@ | ||
| // this file was automatically generated, DO NOT EDIT | ||
| // structs | ||
| // struct2ts:github.com/tablelandnetwork/sqlparser.Table | ||
| export interface Table { | ||
| Name: string; | ||
| IsTarget: boolean; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.Column | ||
| export interface Column { | ||
| Name: string; | ||
| TableRef: Table | null; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.ColumnDef | ||
| export interface ColumnDef { | ||
| Column: Column | null; | ||
| Type: string; | ||
| Constraints: ColumnConstraint[] | null; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.CreateTable | ||
| export interface CreateTable { | ||
| Table: Table | null; | ||
| ColumnsDef: ColumnDef[] | null; | ||
| Constraints: TableConstraint[] | null; | ||
| StrictMode: boolean; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.ColumnConstraintPrimaryKey | ||
| export interface ColumnConstraintPrimaryKey { | ||
| Name: string; | ||
| Order: string; | ||
| AutoIncrement: boolean; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.ColumnConstraintNotNull | ||
| export interface ColumnConstraintNotNull { | ||
| Name: string; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.ColumnConstraintUnique | ||
| export interface ColumnConstraintUnique { | ||
| Name: string; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.ColumnConstraintCheck | ||
| export interface ColumnConstraintCheck { | ||
| Name: string; | ||
| Expr: any; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.ColumnConstraintDefault | ||
| export interface ColumnConstraintDefault { | ||
| Name: string; | ||
| Expr: any; | ||
| Parenthesis: boolean; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.ColumnConstraintGenerated | ||
| export interface ColumnConstraintGenerated { | ||
| Name: string; | ||
| Expr: any; | ||
| GeneratedAlways: boolean; | ||
| IsStored: boolean; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.IndexedColumn | ||
| export interface IndexedColumn { | ||
| Column: Column | null; | ||
| CollationName: string; | ||
| Order: string; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.TableConstraintPrimaryKey | ||
| export interface TableConstraintPrimaryKey { | ||
| Name: string; | ||
| Columns: IndexedColumn[] | null; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.TableConstraintUnique | ||
| export interface TableConstraintUnique { | ||
| Name: string; | ||
| Columns: Column[] | null; | ||
| } | ||
|
|
||
| // struct2ts:github.com/tablelandnetwork/sqlparser.TableConstraintCheck | ||
| export interface TableConstraintCheck { | ||
| Name: string; | ||
| Expr: any; | ||
| } | ||
|
|
||
| export type ColumnConstraint = ColumnConstraintPrimaryKey | ColumnConstraintNotNull | ColumnConstraintUnique | ColumnConstraintCheck | ColumnConstraintDefault | ColumnConstraintGenerated; | ||
| export type TableConstraint = TableConstraintPrimaryKey | TableConstraintUnique | TableConstraintCheck; |
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.