Skip to content

Commit

Permalink
Merge pull request alibaba#495 from cutedemons/master
Browse files Browse the repository at this point in the history
	resolve conflict
  • Loading branch information
cutedemons committed Jan 14, 2014
2 parents 505d62d + 57be02a commit 48b158b
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/main/java/com/alibaba/druid/sql/parser/SQLExprParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -1260,11 +1260,7 @@ public SQLExpr notRationalRest(SQLExpr expr) {
accept(Token.LPAREN);

SQLInListExpr inListExpr = new SQLInListExpr(expr, true);
<<<<<<< HEAD
exprList(inListExpr.getTargetList());
=======
exprList(inListExpr.getTargetList(), inListExpr);
>>>>>>> 9880fb4b85feb38fc1093ea21be5253c1ba9c54a
expr = inListExpr;

accept(Token.RPAREN);
Expand Down Expand Up @@ -1344,13 +1340,10 @@ protected boolean isCharType(String dataTypeName) {
|| "varchar".equalsIgnoreCase(dataTypeName)
|| "nchar".equalsIgnoreCase(dataTypeName)
|| "nvarchar".equalsIgnoreCase(dataTypeName)
<<<<<<< HEAD
=======
|| "tinytext".equalsIgnoreCase(dataTypeName)
|| "text".equalsIgnoreCase(dataTypeName)
|| "mediumtext".equalsIgnoreCase(dataTypeName)
|| "longtext".equalsIgnoreCase(dataTypeName)
>>>>>>> 9880fb4b85feb38fc1093ea21be5253c1ba9c54a
//
;
}
Expand Down Expand Up @@ -1506,11 +1499,7 @@ public SQLColumnDefinition parseColumnRest(SQLColumnDefinition column) {
column.getConstaints().add(check);
return parseColumnRest(column);
}
<<<<<<< HEAD

=======

>>>>>>> 9880fb4b85feb38fc1093ea21be5253c1ba9c54a
if (lexer.token() == Token.COMMENT) {
lexer.nextToken();
column.setComment(primary());
Expand Down

0 comments on commit 48b158b

Please sign in to comment.