MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / cast_to_bigint

Method cast_to_bigint

graphlite/src/exec/executor.rs:5082–5085  ·  view source on GitHub ↗

Cast value to BIGINT

(&self, value: Value)

Source from the content-addressed store, hash-verified

5080
5081 /// Cast value to BIGINT
5082 fn cast_to_bigint(&self, value: Value) -> Result<Value, ExecutionError> {
5083 // For simplicity, treat BIGINT same as INTEGER in our f64-based system
5084 self.cast_to_integer(value)
5085 }
5086
5087 /// Cast value to SMALLINT
5088 fn cast_to_smallint(&self, value: Value) -> Result<Value, ExecutionError> {

Callers 1

cast_valueMethod · 0.80

Calls 1

cast_to_integerMethod · 0.80

Tested by

no test coverage detected