mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-07 00:55:21 +00:00
84dde26a5a
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
19 lines
447 B
Erlang
19 lines
447 B
Erlang
-module(ts_B_create_table_pass_1).
|
|
|
|
-behavior(riak_test).
|
|
|
|
-export([
|
|
confirm/0
|
|
]).
|
|
|
|
-import(timeseries_util, [
|
|
get_ddl/1,
|
|
confirm_create/3
|
|
]).
|
|
|
|
confirm() ->
|
|
ClusterType = multiple,
|
|
DDL = get_ddl(docs),
|
|
Expected = {ok, "GeoCheckin created\n\nWARNING: After activating GeoCheckin, nodes in this cluster\ncan no longer be downgraded to a version of Riak prior to 2.0\n"},
|
|
confirm_create(ClusterType, DDL, Expected).
|