- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for cab_type (0.09 sec)
-
internal/s3select/csv/reader_contrib_test.go
"dropoff_longitude", "dropoff_latitude", "passenger_count", "trip_distance", "fare_amount", "extra", "mta_tax", "tip_amount", "tolls_amount", "ehail_fee", "improvement_surcharge", "total_amount", "payment_type", "trip_type", "pickup", "dropoff", "cab_type", "precipitation", "snow_depth", "snowfall", "max_temp", "min_temp", "wind", "pickup_nyct2010_gid", "pickup_ctlabel", "pickup_borocode", "pickup_boroname", "pickup_ct2010", "pickup_boroct2010", "pickup_cdeligibil", "pickup_ntacode", "pickup_ntaname",...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 38.5K bytes - Viewed (0) -
internal/s3select/sql/funceval.go
castDecimal = "DECIMAL" castNumeric = "NUMERIC" castTimestamp = "TIMESTAMP" ) func (e *Expression) castTo(r Record, castType string, tableAlias string) (res *Value, err error) { v, err := e.evalNode(r, tableAlias) if err != nil { return nil, err } switch castType { case castInt, castInteger: i, err := intCast(v) return FromInt(i), err case castFloat: f, err := floatCast(v)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 13.2K bytes - Viewed (0) -
schema/schema.go
// large binaries, this gives a significant reduction in binary size. // https://github.com/golang/go/issues/62257 func callBackToMethodValue(modelType reflect.Value, cbType callbackType) reflect.Value { switch cbType { case callbackTypeBeforeCreate: return modelType.MethodByName(string(callbackTypeBeforeCreate)) case callbackTypeAfterCreate: return modelType.MethodByName(string(callbackTypeAfterCreate))
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Jun 20 12:19:31 UTC 2024 - 13.7K bytes - Viewed (0) -
internal/s3select/sql/parser.go
ExprArg *Expression `parser:" @@? )! \")\""` } // CastFunc represents CAST sql function type CastFunc struct { Expr *Expression `parser:" \"CAST\" \"(\" @@ "` CastType string `parser:" \"AS\" @(\"BOOL\" | \"INT\" | \"INTEGER\" | \"STRING\" | \"FLOAT\" | \"DECIMAL\" | \"NUMERIC\" | \"TIMESTAMP\") \")\" "` } // SubstringFunc represents SUBSTRING sql function type SubstringFunc 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)