riak_test/tests/ts_A_select_unexpected_token_not_allowed.erl

22 lines
612 B
Erlang
Raw Normal View History

2015-11-11 22:10:28 +00:00
-module(ts_A_select_unexpected_token_not_allowed).
-behavior(riak_test).
-export([confirm/0]).
confirm() ->
Cluster = single,
TestType = normal,
DDL = timeseries_util:get_ddl(docs),
Data = timeseries_util:get_valid_select_data(),
2015-10-13 09:56:48 +00:00
Qry =
"selectah * from GeoCheckin "
"Where time > 1 and time < 10",
Expected =
{error, decoding_error_msg("Unexpected token 'selectah'")},
timeseries_util:confirm_select(
2015-10-13 09:56:48 +00:00
Cluster, TestType, DDL, Data, Qry, Expected).
decoding_error_msg(Msg) ->
iolist_to_binary(io_lib:format("Message decoding error: ~p", [Msg])).