Skip to content

Commit

Permalink
cleanup sequence()
Browse files Browse the repository at this point in the history
  • Loading branch information
mtoy-googly-moogly committed Dec 20, 2024
1 parent d2cafd8 commit 58690b4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/malloy/src/dialect/trino/dialect_functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,19 +177,16 @@ const array_join: OverloadedDefinitionBlueprint = {
const sequence: OverloadedDefinitionBlueprint = {
num_to_num: {
takes: {'start': 'number', 'stop': 'number'},
generic: {'T': ['any']},
returns: {array: 'number'},
impl: {function: 'SEQUENCE'},
},
num_to_num_step: {
takes: {'start': 'number', 'stop': 'number', 'step': 'number'},
generic: {'T': ['any']},
returns: {array: 'number'},
impl: {function: 'SEQUENCE'},
},
date_to_date: {
takes: {'start': 'date', 'stop': 'date'},
generic: {'T': ['any']},
returns: {array: 'date'},
impl: {function: 'SEQUENCE'},
},
Expand Down

0 comments on commit 58690b4

Please sign in to comment.