fix(es/plugin): Fix schema version issue (#8621)

This commit is contained in:
Donny/강동윤 2024-02-08 10:49:38 +09:00 committed by GitHub
parent bcb9cdb0f1
commit 132be95173
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@ pub mod serialized;
* - When removing, or changing existing properties in the AST struct: TBD
*/
#[cfg(feature = "plugin_transform_schema_v1")]
pub const PLUGIN_TRANSFORM_AST_SCHEMA_VERSION: u32 = 2;
pub const PLUGIN_TRANSFORM_AST_SCHEMA_VERSION: u32 = 1;
// Reserved for the testing purpose.
#[cfg(feature = "plugin_transform_schema_vtest")]