Skip to content

Commit

Permalink
add test for insert set (#4011)
Browse files Browse the repository at this point in the history
* add test for `insert set`

* change directory
  • Loading branch information
tristaZero authored and terrymanu committed Jan 17, 2020
1 parent 6379126 commit f8b505f
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 2 deletions.
21 changes: 21 additions & 0 deletions sharding-sql-test/src/main/resources/sql/visitor/dml/insert.xml
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->

<sql-cases>
<sql-case id="insert_set_with_all_placeholders" value="INSERT INTO t_order SET order_id = ?, user_id = ?, status = ?" db-types="MySQL" />
</sql-cases>
Expand Up @@ -243,8 +243,8 @@ public ASTNode visitSimpleExpr(final SimpleExprContext ctx) {
if (null != ctx.parameterMarker()) {
return visit(ctx.parameterMarker());
}
if (null != ctx.literals()) {
return visit( ctx.literals());
if (null != ctx.literals()) {
return visit(ctx.literals());
}
return new LiteralValue(ctx.getText());
}
Expand Down
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->

<parser-result-sets>
<parser-result sql-case-id="insert_set_with_all_placeholders" parameters="1, 1, 'init'">
<tables>
<table name="t_order" start-index="12" stop-index="18" />
</tables>
<tokens>
<insert-set-token begin-position="20" />
</tokens>
<sharding-conditions>
<and-condition>
<condition column-name="order_id" table-name="t_order" operator="EQUAL">
<value index="0" literal="1" type="int" />
</condition>
<condition column-name="user_id" table-name="t_order" operator="EQUAL">
<value index="1" literal="1" type="int" />
</condition>
</and-condition>
</sharding-conditions>
</parser-result>
</parser-result-sets>

0 comments on commit f8b505f

Please sign in to comment.