Skip to content

BUG: When read_sql_query() returns no records and chunksize is specified, dtype is ignored. #50245

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
3 tasks done
sergiykhan opened this issue Dec 13, 2022 · 0 comments · Fixed by #50288
Closed
3 tasks done
Labels
Bug IO SQL to_sql, read_sql, read_sql_query

Comments

@sergiykhan
Copy link

sergiykhan commented Dec 13, 2022

Pandas version checks

  • I have checked that this issue has not already been reported.

  • I have confirmed this bug exists on the latest version of pandas.

  • I have confirmed this bug exists on the main branch of pandas.

Reproducible Example

import pandas as pd
import sqlite3

type_map = {'a': int, 'b': str}

df = pd.DataFrame(columns=['a', 'b']).astype(type_map)

conn = sqlite3.connect(':memory:')

df.to_sql(
    'test',
    conn,
    index=False,
    if_exists='replace',
)

# Expected output:
df = pd.read_sql_query(
    'SELECT * FROM test',
    conn,
    dtype=type_map,
)
print(f'Without chunksize\n{df.dtypes}')

# Actual output when using chunksize:
for df in pd.read_sql_query(
    'SELECT * FROM test',
    conn,
    dtype=type_map,
    chunksize=100,
):
    print(f'With chunksize\n{df.dtypes}')
Without chunksize
a     int64
b    object
dtype: object

With chunksize
a    object
b    object
dtype: object

Issue Description

dtype is ignored when pd.read_sql_query() is used with chunksize and no records are returned.

Expected Behavior

Using the code above, the last statement should print

a    int64
b    object
dtype: object

Installed Versions

INSTALLED VERSIONS

commit : 8dab54d
python : 3.9.16.final.0
python-bits : 64
OS : Linux
OS-release : 5.10.102.1-microsoft-standard-WSL2
Version : #1 SMP Wed Mar 2 00:30:59 UTC 2022
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : en_US.UTF-8
LANG : en_US.UTF-8
LOCALE : en_US.UTF-8

pandas : 1.5.2
numpy : 1.23.2
pytz : 2022.2.1
dateutil : 2.8.2
setuptools : 65.0.0
pip : 22.3.1
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : 2.9.3
jinja2 : 3.1.2
IPython : 8.4.0
pandas_datareader: None
bs4 : None
bottleneck : None
brotli : 1.0.9
fastparquet : None
fsspec : None
gcsfs : None
matplotlib : 3.5.3
numba : None
numexpr : None
odfpy : None
openpyxl : 3.0.10
pandas_gbq : None
pyarrow : None
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : None
snappy : None
sqlalchemy : 1.4.40
tables : None
tabulate : None
xarray : None
xlrd : None
xlwt : None
zstandard : None
tzdata : 2022.2

@sergiykhan sergiykhan added Bug Needs Triage Issue that has not been reviewed by a pandas team member labels Dec 13, 2022
@sergiykhan sergiykhan changed the title BUG: BUG: When read_sql_query() returns no records and chunksize is specified, dtype is ignored. Dec 13, 2022
@phofl phofl added IO SQL to_sql, read_sql, read_sql_query and removed Needs Triage Issue that has not been reviewed by a pandas team member labels Dec 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug IO SQL to_sql, read_sql, read_sql_query
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants