File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -1158,6 +1158,13 @@ Notes & Caveats
1158
1158
store.append('wp_big_strings', wp)
1159
1159
store.select('wp_big_strings')
1160
1160
1161
+ Compatibility
1162
+ ~~~~~~~~~~~~~
1163
+
1164
+ 0.10 of ``HDFStore `` is backwards compatible for reading tables created in a prior version of pandas,
1165
+ however, query terms using the prior (undocumented) methodology are unsupported. You must read in the entire
1166
+ file and write it out using the new format to take advantage of the updates.
1167
+
1161
1168
1162
1169
Performance
1163
1170
~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -216,7 +216,6 @@ Updated PyTables Support
216
216
217
217
:ref:`Docs <io-hdf5>` for PyTables ``Table`` format & several enhancements to the api. Here is a taste of what to expect.
218
218
219
-
220
219
.. ipython:: python
221
220
:suppress:
222
221
:okexcept:
@@ -319,6 +318,12 @@ Updated PyTables Support
319
318
import os
320
319
os.remove('store.h5')
321
320
321
+ **Compatibility**
322
+
323
+ 0.10 of ``HDFStore`` is backwards compatible for reading tables created in a prior version of pandas,
324
+ however, query terms using the prior (undocumented) methodology are unsupported. You must read in the entire
325
+ file and write it out using the new format to take advantage of the updates.
326
+
322
327
N Dimensional Panels (Experimental)
323
328
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
324
329
You can’t perform that action at this time.
0 commit comments