Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix formatting.
  • Loading branch information
whuffman36 committed Dec 11, 2024
commit 55d70a5a228eaa6a2ba87fb09b46f29c834c88f4
Original file line number Diff line number Diff line change
Expand Up @@ -302,9 +302,10 @@ public static QueryParameterValue bytes(byte[] value) {

/**
* Creates a {@code QueryParameterValue} object with a type of TIMESTAMP.
* @param value Microseconds since epoch, e.g. 1733945416000000 corresponds
* to 2024-12-11 19:30:16.929Z
* */
*
* @param value Microseconds since epoch, e.g. 1733945416000000 corresponds to 2024-12-11
* 19:30:16.929Z
*/
public static QueryParameterValue timestamp(Long value) {
return of(value, StandardSQLTypeName.TIMESTAMP);
}
Expand Down