- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TIMEZONE_HOUR (0.18 sec)
-
internal/s3select/sql/parser.go
type ExtractFunc struct { Timeword string `parser:" \"EXTRACT\" \"(\" @( \"YEAR\":Timeword | \"MONTH\":Timeword | \"DAY\":Timeword | \"HOUR\":Timeword | \"MINUTE\":Timeword | \"SECOND\":Timeword | \"TIMEZONE_HOUR\":Timeword | \"TIMEZONE_MINUTE\":Timeword ) "` From *PrimaryTerm `parser:" \"FROM\" @@ \")\" "` } // TrimFunc represents TRIM sql function type TrimFunc struct {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 12.9K bytes - Viewed (0) -
internal/s3select/sql/timestampfuncs.go
timePartMonth = "MONTH" timePartDay = "DAY" timePartHour = "HOUR" timePartMinute = "MINUTE" timePartSecond = "SECOND" timePartTimezoneHour = "TIMEZONE_HOUR" timePartTimezoneMinute = "TIMEZONE_MINUTE" ) func extract(what string, t time.Time) (v *Value, err error) { switch what { case timePartYear: return FromInt(int64(t.Year())), nil case timePartMonth:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 4.8K bytes - Viewed (0)