Skip to content

Commit

Permalink
Merge pull request pandas-dev#8510 from jorisvandenbossche/doc-fixes
Browse files Browse the repository at this point in the history
DOC: fix example sql chunksize
  • Loading branch information
jorisvandenbossche committed Oct 8, 2014
2 parents aaba591 + d2bc2fe commit a05b8ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3421,7 +3421,7 @@ Specifying this will return an iterator through chunks of the query result:
.. ipython:: python
for chunk in pd.read_sql_query("SELECT * FROM data_chunks", engine, chunksize):
for chunk in pd.read_sql_query("SELECT * FROM data_chunks", engine, chunksize=5):
print(chunk)
You can also run a plain query without creating a dataframe with
Expand Down

0 comments on commit a05b8ed

Please sign in to comment.