Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vitstn committed Sep 10, 2024
1 parent d2b37ca commit 94ac3d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/library/yql/sql/pg/pg_sql.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4174,7 +4174,7 @@ class TConverter : public IPGParseEvents {
return nullptr;
}

if (rangeFunction && schema != "pg_catalog") {
if (rangeFunction && !schema.empty() && schema != "pg_catalog") {
injectRead = true;
return ParseTableRangeFunction(name, schema, value->args);
}
Expand Down

0 comments on commit 94ac3d6

Please sign in to comment.