riak_test/tests/ts_A_select_fail_2.erl
2015-10-13 09:56:48 +00:00

22 lines
590 B
Erlang

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