Skip to content

Commit

Permalink
Use fast json deserialize function in sql parsing (#3249)
Browse files Browse the repository at this point in the history
  • Loading branch information
gs-ssh16 authored Nov 14, 2024
1 parent afe1677 commit dac201d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ native function <<access.private>> meta::external::store::relational::postgresSq
function meta::external::store::relational::postgresSql::parser::parseSqlStatement(sql: String[1]): Statement[1]
{
let statementJson = $sql->parseSqlStatementToJson();
$statementJson->fromJSON(
$statementJson->fromJson(
Statement,
^JSONDeserializationConfig(
typeKeyName = '_type',
Expand Down

0 comments on commit dac201d

Please sign in to comment.