[email protected] has uploaded a new change for review. https://asterix-gerrit.ics.uci.edu/3073
Change subject: removing query test ...................................................................... removing query test Change-Id: Idecc605e325a6ac3b835d15858b2f607fbee9842 --- A asterixdb/asterix-app/src/test/resources/runtimets/queries_sqlpp/parse-only/named_01.1.query.sqlpp 1 file changed, 61 insertions(+), 0 deletions(-) git pull ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb refs/changes/73/3073/1 diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/queries_sqlpp/parse-only/named_01.1.query.sqlpp b/asterixdb/asterix-app/src/test/resources/runtimets/queries_sqlpp/parse-only/named_01.1.query.sqlpp new file mode 100644 index 0000000..68d6aad --- /dev/null +++ b/asterixdb/asterix-app/src/test/resources/runtimets/queries_sqlpp/parse-only/named_01.1.query.sqlpp @@ -0,0 +1,61 @@ +/* + * 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. + */ + +/* + * Description : Test named statement parameters with json encoded request + * Expected Res : Success + * Date : Jun 2018 + */ + +// requesttype=application/json + +// param $p_null:json=null +// param $p_bool:json=true +// param $p_int:json=42 +// param $p_dec:json=42.5 +// param $p_dbl:json=42.5e2 +// param $p_str:json="hello" +// param $p_arr:json=["99",100,{"a":null},null,true] +// param $p_obj:json={"a":[1,2,3]} + +{ + "t1": { + "p_null": $p_null, + "p_bool": $p_bool, + "p_int": $p_int, + "p_dec": $p_dec, + "p_dbl": $p_dbl, + "p_str": $p_str, + "p_arr": $p_arr, + "p_obj": $p_obj + }, + + "t2": { + "p_null_type": $p_null is null, + "p_bool_type": is_boolean($p_bool), + "p_int_type": is_number($p_int), + "p_dec_type": is_number($p_dec), + "p_dbl_type": is_number($p_dbl), + "p_str_type": is_string($p_str), + "p_arr_type": is_array($p_arr), + "p_obj_type": is_object($p_obj) + }, + + "t3": [ $p_null, $p_bool, $p_int, $p_dec, $p_dbl, $p_str, $p_arr, $p_obj ] +} -- To view, visit https://asterix-gerrit.ics.uci.edu/3073 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Idecc605e325a6ac3b835d15858b2f607fbee9842 Gerrit-PatchSet: 1 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: [email protected]
