-
Updated
May 19, 2021 - C++
dbms
Here are 653 public repositories matching this topic...
-
Updated
May 19, 2021 - Java
It would be great to implement test case reduction strategies in SQLancer itself. The advantage of doing this in SQLancer, rather than an external tool like C-Reduce, is that we have all the information on whether a specific bug is still triggered (e.g., that two queries should yield the same result) and that the reduction can likely go further than when having an external interestingness test (e.
-
Updated
Jan 26, 2021 - Go
-
Updated
Apr 15, 2021 - Python
-
Updated
Apr 15, 2021
-
Updated
Apr 24, 2020 - C
-
Updated
May 15, 2021 - PHP
-
Updated
May 19, 2021 - Rust
-
Updated
Jun 30, 2020 - Go
-
Updated
Sep 27, 2018 - C++
-
Updated
May 15, 2021 - PHP
Add `Bool` datatype
-
Updated
Mar 14, 2021 - C++
-
Updated
Dec 23, 2020 - Java
-
Updated
Feb 23, 2021
-
Updated
Sep 30, 2020
-
Updated
May 3, 2020 - C++
-
Updated
Oct 4, 2020 - Python
-
Updated
Nov 8, 2020 - HTML
The application uses different methods to get the current date and time. Some of them ignore the timezone, some of them not. The application should be consistent in the use of date and timestamps.
| Method | Result |
|---|---|
| Time.zone.now | Time in timezone set by config.time_zone, UTC otherwise |
| DateTime.now | Date & Time in system timezone; ignores config.time_zone |
If users
-
Updated
Oct 21, 2020 - JavaScript
Improve this page
Add a description, image, and links to the dbms topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the dbms topic, visit your repo's landing page and select "manage topics."
Use case:
Right now one can only use
date_trunc()to easily define time buckets.date_trunc()only supports predefine time intervals like 1 minute, 1 hour, etc. . In time-series use cases it is often necessary to define different time bucket sizes like e.g. '5 minutes' or '20 minutes'a workaround for this is the - error prone - integer division on the timestamp e.g.