diff --git a/core/src/fflags.rs b/core/src/fflags.rs index c832feee035..33366649993 100644 --- a/core/src/fflags.rs +++ b/core/src/fflags.rs @@ -10,8 +10,8 @@ pub static FFLAGS: FFlags = FFlags { // TODO(fflag-lqcf): This TODO signature marks tests that are affected by the fflag that do not have access to the fflag (scope) change_feed_live_queries: FFlagEnabledStatus { enabled_release: false, - enabled_debug: false, - enabled_test: false, + enabled_debug: true, + enabled_test: true, env_override: "SURREALDB_CHANGE_FEED_LIVE_QUERIES", owner: "Hugh Kaznowski", description: "Disables live queries as a separate feature and moves to using change feeds as the underlying mechanism", diff --git a/core/src/lib.rs b/core/src/lib.rs index 543c89239fe..d2921f91572 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -53,6 +53,12 @@ pub mod test_helpers { pub use crate::vs::generate_versionstamp_sequences; } +#[doc(hidden)] +pub mod test_helpers { + pub use crate::vs::conv::to_u128_be; + pub use crate::vs::generate_versionstamp_sequences; +} + #[doc(hidden)] /// Channels for receiving a SurrealQL database export pub mod channel { diff --git a/core/src/vs/mod.rs b/core/src/vs/mod.rs index 1d53ee27eb8..d447d661fd2 100644 --- a/core/src/vs/mod.rs +++ b/core/src/vs/mod.rs @@ -32,7 +32,6 @@ pub fn generate_versionstamp_sequences(start: Versionstamp) -> VersionstampSeque } #[doc(hidden)] -#[non_exhaustive] pub struct VersionstampSequence { next_state: Option, }