MCPcopy Create free account
hub / github.com/AmrDeveloper/GQL / with_window_functions

Method with_window_functions

crates/gitql-core/src/environment.rs:89–96  ·  view source on GitHub ↗

Register Window functions signatures and references

(
        &mut self,
        signatures: &HashMap<&'static str, Signature>,
        window: &HashMap<&'static str, WindowFunction>,
    )

Source from the content-addressed store, hash-verified

87
88 /// Register Window functions signatures and references
89 pub fn with_window_functions(
90 &mut self,
91 signatures: &HashMap<&'static str, Signature>,
92 window: &HashMap<&'static str, WindowFunction>,
93 ) {
94 self.window_signatures.extend(signatures.to_owned());
95 self.window_functions.extend(window.to_owned());
96 }
97
98 /// Register new Modified Types table
99 pub fn with_types_table(&mut self, types_table: TypesTable) {

Callers 1

create_gitql_environmentFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected