BaseXdb / basex

BaseX Main Repository.
http://basex.org
BSD 3-Clause "New" or "Revised" License
695 stars 264 forks source link

XQuery: `xquery:eval`, stack overflows #2332

Closed ChristianGruen closed 2 months ago

ChristianGruen commented 2 months ago

It should be able to catch stack overflow errors caused by xquery:eval:

try {
  xquery:eval('declare function local:f() { local:f() }; local:f()')
} catch * {
  'STOP!'
}