update delta encoding
diff --git a/src/thrift/parquet.thrift b/src/thrift/parquet.thrift
index bddf831..6762578 100644
--- a/src/thrift/parquet.thrift
+++ b/src/thrift/parquet.thrift
@@ -145,6 +145,10 @@
   /** Bit packed encoding.  This can only be used if the data has a known max
    * width.  Usable for definition/repetition levels encoding.  **/
   BIT_PACKED = 4;
+
+  /** Delta encoding for integers. This can be used for int columns and works best 
+   * on sorted data */
+  DELTA_BINARY_PACKED = 5;
 }
 
 /**