We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The hosttim field on the ISARIC table is converted to a date
hosttim
cohort-extractor/cohortextractor/process_covariate_definitions.py
Line 223 in 7d869e8
cohort-extractor/cohortextractor/tpp_backend.py
Line 3355 in 7d869e8
However, it's actually a time (string), not a date. Converting it to date doesn't error, but it produces "1900-01-01" for all values.
Example query on db:
SELECT TOP 3 hosttim, CONVERT(DATE, hosttim, 103) as date, CONVERT(TIME, hostim) as time FROM ISARIC_Patient_Data_TopLine;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
hosttim
field on the ISARIC table is converted to a datecohort-extractor/cohortextractor/process_covariate_definitions.py
Line 223 in 7d869e8
cohort-extractor/cohortextractor/tpp_backend.py
Line 3355 in 7d869e8
However, it's actually a time (string), not a date. Converting it to date doesn't error, but it produces "1900-01-01" for all values.
Example query on db:
The text was updated successfully, but these errors were encountered: