Skip to content

Commit 5ef79ff

Browse files
committed
maybe
1 parent 188b909 commit 5ef79ff

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

doc/source/whatsnew/v0.10.1.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ perform queries on a table, by passing a list to ``data_columns``
5858

5959
# on-disk operations
6060
store.append('df', df, data_columns = ['B','C','string','string2'])
61-
store.select('df').dtypes
62-
store.select('df', "B>0 and string==foo")
61+
store.select('df', "B>0 and string=='foo'")
6362

6463
# this is in-memory version of this type of selection
6564
df[(df.B > 0) & (df.string == 'foo')]
@@ -111,7 +110,7 @@ columns, this is equivalent to passing a
111110
store.select('mi')
112111

113112
# the levels are automatically included as data columns
114-
store.select('mi', 'foo=bar')
113+
store.select('mi', "foo='bar'")
115114

116115
Multi-table creation via ``append_to_multiple`` and selection via
117116
``select_as_multiple`` can create/select from multiple tables and return a

0 commit comments

Comments
 (0)