We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4276ac commit 51e2f0fCopy full SHA for 51e2f0f
1 file changed
docs/design/multi-backend-plan.md
@@ -125,7 +125,17 @@ CORE_TYPES = {
125
}
126
```
127
128
-### 1.4 Design Decisions
+### 1.4 SQL Function Standardization
129
+
130
+Replaced MySQL-specific `NOW()` with standard SQL `CURRENT_TIMESTAMP` in:
131
+- `jobs.py` - all timestamp queries
132
+- `autopopulate.py` - pending job queries
133
134
+`CURRENT_TIMESTAMP` works identically on MySQL and PostgreSQL.
135
136
+**Remaining:** `INTERVAL n SECOND` syntax differs between backends and will be handled by the adapter's `interval_expr()` method.
137
138
+### 1.5 Design Decisions
139
140
| Decision | Rationale |
141
|----------|-----------|
0 commit comments