mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-07 17:08:55 +00:00
22 lines
596 B
Erlang
22 lines
596 B
Erlang
-module(ts_A_select_fail_5).
|
|
|
|
-behavior(riak_test).
|
|
|
|
-export([confirm/0]).
|
|
|
|
%%% Comparing fields should yield an error message.
|
|
%%% FIXME failing because of RTS-388
|
|
|
|
confirm() ->
|
|
DDL = timeseries_util:get_ddl(docs),
|
|
Data = timeseries_util:get_valid_select_data(),
|
|
Qry =
|
|
"SELECT * FROM GeoCheckin "
|
|
"WHERE time > 1 and time < 10 "
|
|
"AND myfamily = 'fa2mily1' "
|
|
"AND myseries ='seriesX' "
|
|
"AND weather = myseries",
|
|
Expected = "some error message, fix me",
|
|
timeseries_util:confirm_select(
|
|
single, normal, DDL, Data, Qry, Expected).
|