Ricardo Órfão

Results 1 issues of Ricardo Órfão

Pypika messes up Interval dates when using MySQL queries: ``` python from pypika import functions as fn fruits = Tables('fruits') q = MySQLQuery.from_(fruits) \ .select(fruits.id, fruits.name) \ .where(fruits.harvest_date + Interval(months=1)...