Skip to content

Commit

Permalink
re-use ansi sql function overwrites also for HANAService
Browse files Browse the repository at this point in the history
  • Loading branch information
patricebender committed Jan 21, 2025
1 parent 9f9f152 commit 4f0b4b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hana/lib/HANAService.js
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ SELECT ${mixing} FROM JSON_TABLE(SRC.JSON, '$' COLUMNS(${extraction})) AS NEW LE
// Loads a static result from the query `SELECT * FROM RESERVED_KEYWORDS`
static ReservedWords = { ...super.ReservedWords, ...hanaKeywords }

static Functions = require('./cql-functions')
static Functions = { ...super.Functions, ...require('./cql-functions') }

static TypeMap = {
...super.TypeMap,
Expand Down

0 comments on commit 4f0b4b7

Please sign in to comment.