We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9810a9 commit ab55b37Copy full SHA for ab55b37
tests/size.rs
@@ -0,0 +1,9 @@
1
+use sea_query::Value;
2
+
3
+#[test]
4
+fn value_size() {
5
+ let max = 40;
6
+ if size_of::<Value>() > max {
7
+ panic!("the size of Value shouldn't be greater than {max} bytes");
8
+ }
9
+}
0 commit comments