Skip to content

Commit

Permalink
Update timescale language definition
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Peveler <[email protected]>
  • Loading branch information
MasterOdin committed Nov 21, 2024
1 parent 18abc1f commit 36953c0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/pgsql/pgsql.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Documented for pg 17

import cloneDeep from 'lodash.clonedeep';
import {
conf as oldConf,
Expand Down
10 changes: 7 additions & 3 deletions src/timescale/timescale.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Documented for Timescale 2.17.2

import cloneDeep from 'lodash.clonedeep';

import { conf as oldConf, language as oldLanguage } from '../pgsql/pgsql';
Expand All @@ -22,6 +24,8 @@ language.builtinFunctions.push(
'set_chunk_time_interval',
'set_integer_now_func',
'add_dimension',
'enable_chunk_skipping',
'disable_chunk_skipping',
'create_index',
'hypertable_size',
'hypertable_approximate_size',
Expand All @@ -44,7 +48,7 @@ language.builtinFunctions.push(
// 'copy_chunk', - experimental
// 'move_chunk', - experimental
// 'cleanup_copy_chunk_operation', - experimental
// 'create_distributed_restore_point', - experimental
'create_distributed_restore_point',
// Compression
'add_compression_policy',
'remove_compression_policy',
Expand Down Expand Up @@ -184,8 +188,8 @@ language.builtinFunctions.push(
'idelta_left',
'idelta_right',
'intercept',
// 'interpolated_delta', - experimental
// 'interpolated_rate', - experimental
'interpolated_delta',
'interpolated_rate',
'irate_left',
'irate_right',
'last_time',
Expand Down

0 comments on commit 36953c0

Please sign in to comment.