Skip to content

Commit

Permalink
fix to translate missing rows in ewallet.wallet_merchant_balance_dail…
Browse files Browse the repository at this point in the history
…y to sqlite
  • Loading branch information
wendy-aw authored and rishsriv committed Jun 27, 2024
1 parent b9d57fb commit c24c035
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions utils_dialects.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,8 @@ def replace_strftime_month(translated_ddl):
return translated_ddl
translated_ddl = replace_strftime_month(translated_ddl)

# replace CURRENT_DATE with DATE('now')
translated_ddl = translated_ddl.replace("CURRENT_DATE", "DATE('now')")
return translated_ddl


Expand Down

0 comments on commit c24c035

Please sign in to comment.