mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-29 11:10:40 +00:00
"enable_user_defined_functions" is enabled by default by `make_scylla_conf()` in pylib/scylla_cluster.py, and we've being using `experimental` = True in this very function. this combination works fine, as "udf" is enabled by `experimental`. but since `experimental` is deprecated, if we drop this option and stop handling it. this peace is broken. "enable_user_defined_function" requires "udf" experimental feature. but test_boost_after_ip_change feed the scylla with an empty `experimental_features` list, so the test fails. to pave for the road of dropping `experimental` option, let's disable `enable_user_defined_function` as well in test_boost_after_ip_change. the same applies to other tests changed in this commit. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>