2015-11-20 22:09:48 +00:00
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
%%
|
|
|
|
%% Copyright (c) 2015 Basho Technologies, Inc.
|
|
|
|
%%
|
|
|
|
%% This file is provided 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.
|
|
|
|
%%
|
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
|
2016-01-11 17:40:38 +00:00
|
|
|
-module(ts_simple_select_unexpected_token_not_allowed).
|
2015-09-24 10:17:49 +00:00
|
|
|
|
|
|
|
-behavior(riak_test).
|
|
|
|
|
2015-11-17 22:54:20 +00:00
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
|
|
|
2015-10-05 10:09:53 +00:00
|
|
|
-export([confirm/0]).
|
2015-09-24 10:17:49 +00:00
|
|
|
|
|
|
|
confirm() ->
|
2015-10-05 10:09:53 +00:00
|
|
|
TestType = normal,
|
2015-12-01 17:59:55 +00:00
|
|
|
DDL = ts_util:get_ddl(),
|
2015-11-19 20:13:26 +00:00
|
|
|
Data = ts_util:get_valid_select_data(),
|
2015-10-13 09:56:48 +00:00
|
|
|
Qry =
|
|
|
|
"selectah * from GeoCheckin "
|
|
|
|
"Where time > 1 and time < 10",
|
2016-02-03 04:41:08 +00:00
|
|
|
Got = ts_util:ts_query(
|
2015-12-01 17:59:55 +00:00
|
|
|
ts_util:cluster_and_connect(single), TestType, DDL, Data, Qry),
|
2016-02-03 16:52:04 +00:00
|
|
|
ts_util:assert_error_regex("Unexpected Token", {error, {1020, <<".*Unexpected token.*">>}}, Got).
|