Skip to content

Commit

Permalink
rename method (#2390)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yasirmod17 authored Oct 19, 2023
1 parent bf16495 commit 5fbfc4c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function <<db.ExtensionLoader>> meta::relational::functions::sqlQueryToString::s

function <<access.private>> meta::relational::functions::sqlQueryToString::sparkSQL::createDbExtensionForSparkSQL():DbExtension[1]
{
let reservedWords = sybaseReservedWords();
let reservedWords = sparkReservedWords();
let literalProcessors = getDefaultLiteralProcessors()->putAll(getLiteralProcessorsForSparkSQL());
let literalProcessor = {type:Type[1]| $literalProcessors->get(if($type->instanceOf(Enumeration), | Enum, | $type))->toOne()};
let dynaFuncDispatch = getDynaFunctionToSqlDefault($literalProcessor)->groupBy(d| $d.funcName)->putAll(
Expand Down Expand Up @@ -304,7 +304,8 @@ function meta::relational::functions::sqlQueryToString::sparkSQL::loadValuesToDb
,| $l->meta::relational::functions::sqlQueryToString::default::loadValuesToDbTableDefault($dbConfig));
}

function <<access.private>> meta::relational::functions::sqlQueryToString::sparkSQL::sybaseReservedWords():String[*]

function <<access.private>> meta::relational::functions::sqlQueryToString::sparkSQL::sparkReservedWords():String[*]
{
//Based on
// http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc38151.1510/html/iqrefbb/Alhakeywords.htm
Expand Down

0 comments on commit 5fbfc4c

Please sign in to comment.