Merge branch 'pr-119'
This commit is contained in:
@ -917,6 +917,8 @@ void Skip2NextTerminator(String initiator,String terminator) :
|
||||
t = getToken(1);
|
||||
if(t.image.equals(initiator)) count++;
|
||||
if(t.image.equals(terminator)) count--;
|
||||
if(null != t.specialToken || t.kind == EOF)
|
||||
return;
|
||||
}
|
||||
}
|
||||
{
|
||||
|
@ -36,4 +36,12 @@ public class PLSQLParserTest extends AbstractPLSQLParserTst {
|
||||
+ " doSomethingElse;"
|
||||
+ "END;");
|
||||
}
|
||||
|
||||
@Test(timeout = 5000)
|
||||
public void testBug1531() {
|
||||
parsePLSQL(
|
||||
"create or replace force view oxa.o_xa_function_role_types as\n" +
|
||||
"select \"CFT_ID\",\"CFR_ID\",\"CFT_NAME\",\"TCN\",\"LOG_MODULE\",\"LOG_USER\",\"LOG_DATE\",\"LOG_TIME\" from crm_function_role_types\n" +
|
||||
"/");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user