riak_test/tests/ts_A_select_fail_1.erl
Gordon Guthrie 84dde26a5a Further Time Series Tests
Please see the ts.README for details of the test structure

Some of these tests will fail:
* because they are bugs

Some of these tests will fail:
because we are currently awaiting query fixes and merges
2015-09-24 10:17:49 +00:00

22 lines
422 B
Erlang

-module(ts_A_select_fail_1).
-behavior(riak_test).
-export([
confirm/0
]).
-import(timeseries_util, [
get_ddl/1,
get_valid_select_data/0,
get_invalid_qry/1,
confirm_select/6
]).
confirm() ->
DDL = "",
Data = get_valid_select_data(),
Qry = get_invalid_qry(borked_syntax),
Expected = "some error message, fix me",
confirm_select(single, no_ddl, DDL, Data, Qry, Expected).