File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
main/java/net/sf/jsqlparser/parser
test/java/net/sf/jsqlparser/util Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ public static void main(String[] args) throws Exception {
214
214
215
215
public static TreeSet <String > getAllKeywordsUsingRegex (File file ) throws IOException {
216
216
Pattern tokenBlockPattern = Pattern .compile (
217
- "TOKEN\\ s*:\\ s*(?:/\\ *.*\\ */*)\\ n \\ {(?:[^\\ }\\ {]+|\\ {(?:[^\\ }\\ {]+|\\ {[^\\ }\\ {]*\\ })*\\ })*\\ }" ,
217
+ "TOKEN\\ s*:\\ s*(?:/\\ *.*\\ */*)(?: \\ r? \\ n| \\ r) \\ {(?:[^\\ }\\ {]+|\\ {(?:[^\\ }\\ {]+|\\ {[^\\ }\\ {]*\\ })*\\ })*\\ }" ,
218
218
Pattern .MULTILINE );
219
219
Pattern tokenStringValuePattern = Pattern .compile ("\\ \" (\\ w{2,})\\ \" " , Pattern .MULTILINE );
220
220
Original file line number Diff line number Diff line change 9
9
*/
10
10
package net .sf .jsqlparser .util ;
11
11
12
- import jdk .nashorn .internal .ir .annotations .Ignore ;
13
12
import net .sf .jsqlparser .JSQLParserException ;
14
13
import net .sf .jsqlparser .expression .OracleHint ;
15
14
import net .sf .jsqlparser .parser .CCJSqlParserManager ;
23
22
import net .sf .jsqlparser .statement .simpleparsing .CCJSqlParserManagerTest ;
24
23
import net .sf .jsqlparser .test .TestException ;
25
24
import net .sf .jsqlparser .test .TestUtils ;
25
+ import org .junit .jupiter .api .Disabled ;
26
26
import org .junit .jupiter .api .Test ;
27
27
28
28
import java .io .BufferedReader ;
@@ -41,17 +41,17 @@ public class TablesNamesFinderTest {
41
41
42
42
private static final CCJSqlParserManager PARSER_MANAGER = new CCJSqlParserManager ();
43
43
44
- @ Ignore
44
+ @ Disabled
45
45
public void testRUBiSTableList () throws Exception {
46
46
runTestOnResource ("/RUBiS-select-requests.txt" );
47
47
}
48
48
49
- @ Ignore
49
+ @ Disabled
50
50
public void testMoreComplexExamples () throws Exception {
51
51
runTestOnResource ("complex-select-requests.txt" );
52
52
}
53
53
54
- @ Ignore
54
+ @ Disabled
55
55
public void testComplexMergeExamples () throws Exception {
56
56
runTestOnResource ("complex-merge-requests.txt" );
57
57
}
You can’t perform that action at this time.
0 commit comments