Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LDI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Grant Weddell
LDI
Commits
cfbb3e6e
Commit
cfbb3e6e
authored
4 years ago
by
Tony Zhang
Browse files
Options
Downloads
Patches
Plain Diff
Fix schema parser
parent
0e1b5332
No related branches found
Branches containing commit
No related tags found
1 merge request
!6
Rewrite Parsers for SQLP Query, Schema, and Referring Type Expression
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
SQLPSchema.y
+32
-31
32 additions, 31 deletions
SQLPSchema.y
util.c
+1
-0
1 addition, 0 deletions
util.c
with
33 additions
and
31 deletions
SQLPSchema.y
+
32
−
31
View file @
cfbb3e6e
...
...
@@ -21,33 +21,34 @@
SQLPSchema
: TableDefnList
{
$$ = NULL;
$$ = create_cons_cell_w_atom("SQLP_SCHEMA\0", create_cons_cell(create_list("TABLE_DEFN\0", $1), NULL));
print_cons_tree($$);
};
TableDefnList
: TableDefn
List
';' TableDefn
: TableDefn ';' TableDefn
List
{
$$ =
NULL
;
$$ =
create_cons_cell($1, $3)
;
}
| TableDefn
{
$$ =
$1
;
$$ =
create_cons_cell($1, NULL)
;
};
TableDefn
: TABLE TableIdentifier '(' TableSpecs ')'
{
$$ = NULL;
$$ =
create_cons_cell_w_atom("TABLE_DEFN\0", create_cons_cell($2, create_cons_cell(create_list("TABLE_SPECS\0", $4),
NULL
)))
;
};
TableSpecs
: TableSpecs ',' TableSpec
{
$$ =
NULL
;
$$ =
create_cons_cell($3, $1)
;
}
| Self
{
$$ = NULL;
$$ =
create_cons_cell($1,
NULL
)
;
};
TableSpec
...
...
@@ -79,107 +80,107 @@ TableSpec
Self
: SELF OID
{
$$ = NULL;
$$ =
create_cons_cell_w_atom("SELF\0",
NULL
)
;
};
AttributeDefn
: AttributeIdentifier Type
{
$$ = NULL;
$$ =
create_cons_cell_w_atom("ATTRIBUTE_DEFN\0", create_cons_cell($1, create_cons_cell($2,
NULL
)))
;
};
Cover
: COVERED BY '{' TableIdentifierList '}'
{
$$ = NULL;
$$ =
create_cons_cell_w_atom("COVER\0", create_cons_cell(create_list("TABLE_IDENTIFIER\0", $4),
NULL
))
;
};
ForeignKey
: FOREIGN KEY '(' ForeignKeyIdentifier ')' REFERENCES TableIdentifier
{
$$ = NULL;
$$ =
create_cons_cell_w_atom("FOREIGN_KEY\0", create_cons_cell($4, create_cons_cell($7,
NULL
)))
;
};
Specialization
: ISA TableIdentifier
{
$$ =
NULL
;
$$ =
create_cons_cell_w_atom("ISA\0", $2)
;
};
Disjointness
: DISJOINT WITH TableIdentifier
{
$$ =
NULL
;
$$ =
create_cons_cell_w_atom("DISJOINT\0", $3)
;
};
PathFD
: PATHFD AttributePathList REF AttributePath
{
$$ = NULL;
$$ =
create_cons_cell_w_atom("PATHFD\0", create_cons_cell(create_list("ATTRIBUTE_PATH\0", $2), create_cons_cell(create_list("ATTRIBUTE\0", $4),
NULL
)))
;
};
AttributePathList
: AttributePath
List
',' AttributePath
: AttributePath ',' AttributePath
List
{
$$ =
NULL
;
$$ =
create_cons_cell(create_list("ATTRIBUTE", $1), $3)
;
}
| AttributePath
{
$$ = NULL;
$$ =
create_cons_cell(create_list("ATTRIBUTE", $1),
NULL
)
;
};
AttributePath
: AttributeIdentifier
: AttributeIdentifier
'.' AttributePath
{
$$ =
NULL
;
$$ =
create_cons_cell($1, $3)
;
}
|
AttributePath '.'
AttributeIdentifier
| AttributeIdentifier
{
$$ = NULL;
$$ =
create_cons_cell($1,
NULL
)
;
};
Type
: INTCLASS
{
$$ = NULL;
$$ =
create_cons_cell_w_atom("INTCLASS\0",
NULL
)
;
}
| STRCLASS
{
$$ = NULL;
$$ =
create_cons_cell_w_atom("STRCLASS\0",
NULL
)
;
}
| OID
{
$$ = NULL;
$$ =
create_cons_cell_w_atom("OID\0",
NULL
)
;
};
AttributeIdentifier
: IDENTIFIER
{
$$ =
NULL
;
$$ =
create_identifier("ATTRIBUTE\0", identifier)
;
}
| SELF
{
$$ = NULL;
$$ =
create_cons_cell_w_atom("SELF\0",
NULL
)
;
}
TableIdentifierList
: TableIdentifier
List
',' TableIdentifier
: TableIdentifier ',' TableIdentifier
List
{
$$ =
NULL
;
$$ =
create_cons_cell($1, $3)
;
}
| TableIdentifier
{
$$ = NULL;
$$ =
create_cons_cell($1,
NULL
)
;
};
TableIdentifier
: IDENTIFIER
{
$$ =
NULL
;
$$ =
create_identifier("TABLE\0", identifier)
;
};
ForeignKeyIdentifier
: IDENTIFIER
{
$$ =
NULL
;
$$ =
create_identifier("FOREIGN_KEY\0", identifier)
;
}
This diff is collapsed.
Click to expand it.
util.c
+
1
−
0
View file @
cfbb3e6e
...
...
@@ -73,5 +73,6 @@ static void print_cons_tree_helper(cons_cell *cc, unsigned int padding) {
}
void
print_cons_tree
(
cons_cell
*
cc
)
{
printf
(
"
\n
***Printing Parse Tree***:
\n
"
);
print_cons_tree_helper
(
cc
,
0
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment