Explorar el Código

Fix column naming order.

Kestrel hace 2 años
padre
commit
edfbe7a284
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      microrm/src/model/create.rs

+ 1 - 1
microrm/src/model/create.rs

@@ -64,7 +64,7 @@ impl<'de, 'a> serde::de::Deserializer<'de> for &'a mut CreateDeserializer<'de> {
         fields: &'static [&'static str],
         v: V,
     ) -> Result<V::Value, Self::Error> {
-        self.column_name_stack.extend(fields.iter().map(|x| x.to_string()));
+        self.column_name_stack.extend(fields.iter().map(|x| x.to_string()).rev());
         v.visit_seq(self)
     }