-
Is there any way in how we can (and are allowed to) extract the SQL snippets that users decided to share (i.e., they have a public URL)?
We are researchers aiming to make database systems and other…
-
Hi there,
Firstly, congratulations on the great work and the publication of this very useful library!
I'm encountering some bug while attempting to execute the `eval.py` script. I've successfull…
-
With this grammar:
```
grammar MemMap;
memmap: region+ EOF;
region: (WORD | '_')+ WORD*;
WORD: [A-Za-z]+;
```
I get a SEGFAULT in: `antlr4::atn::PredictionContext::getContextType Predict…
-
Go to http://lab.antlr.org/, and hit the 'run' button to parse the sample grammar and expression, it shows errors below.
```
2:9 token recognition error at: '+'
2:10 extraneous input 'foo' expectin…
-
Given the code from the quick-start snippets:
```
DomainBuilder domainBuilder = Domain.getDefaultProvider().createDefaultBuilder();
domainBuilder.createBasicType("String", String.class).build();
…
-
I am following this [ANTLR4 tutorial for C#](https://github.com/antlr/antlr4/tree/master/runtime/CSharp) and in step 4 I run the ANTLR java file in the C# grammar file I downloaded in your Github (gra…
-
Hi there, I'm trying to replace a grammar parser I have in Antlr4 with this. I'm having an issue creating something similar that can handle a binary expression where 1 side could be another binary exp…
-
Target: C#
Grammar: PL/SQL
I am trying to parse parser.sql_script() for this:
```sql
CREATE OR REPLACE PACKAGE ACCESS_SECURITY AS
-- omitted
END;
```
But it fails due to treating ACCESS …
-
According to https://github.com/antlr/antlr4/releases/tag/4.13.0, there is a dedicated repo to import.
todo:
- change jar version
- change go.mod in kuneiform/sql-grammar-go/action-grammar-go/kwi…
Yaiba updated
9 months ago
-
I have two confusions about import and integer when comparing language spec v1.1 and its ANTLR4 grammar:
1. [The URI grammar defined in ANTLR4 grammar is `string` which supports expression placeholde…