All of `current_timestamp`, `current_time`, and `current_date` should now work outside of `CREATE TA

All of current_timestamp, current_time, and current_date should now work outside of CREATE TABLE statements now:
➜  wrangler d1 execute db-enam --command "SELECT current_timestamp, current_time, current_date" --json | jq '.[].results'
[
  {
    "current_timestamp": "2023-06-09 16:16:37",
    "current_time": "16:16:37",
    "current_date": "2023-06-09"
  }
]
Was this page helpful?