We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f79da0a commit 5d498fcCopy full SHA for 5d498fc
things/database.py
@@ -651,10 +651,10 @@ def make_date_filter(date_column: str, value) -> str:
651
Examples
652
--------
653
>>> make_date_filter('startDate', True)
654
- 'AND start_date IS NOT NULL'
+ 'AND startDate IS NOT NULL'
655
656
>>> make_date_filter('startDate', False)
657
- 'AND start_date IS NULL'
+ 'AND startDate IS NULL'
658
659
>>> make_date_filter('startDate', 'future')
660
"AND date(startDate, 'unixepoch') > date('now', 'localtime')"
0 commit comments