From 4d774ba1946346e83278adb6d66d1249961f82c8 Mon Sep 17 00:00:00 2001 From: Adam Retter Date: Sat, 10 Jun 2023 22:56:51 +0100 Subject: [PATCH] [bugfix] Add missing reserved keyword 'copy' --- exist-core/src/main/antlr/org/exist/xquery/parser/XQuery.g | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exist-core/src/main/antlr/org/exist/xquery/parser/XQuery.g b/exist-core/src/main/antlr/org/exist/xquery/parser/XQuery.g index 6ed1d0349a1..188804f1e33 100644 --- a/exist-core/src/main/antlr/org/exist/xquery/parser/XQuery.g +++ b/exist-core/src/main/antlr/org/exist/xquery/parser/XQuery.g @@ -2342,6 +2342,8 @@ reservedKeywords returns [String name] "after" { name = "after"; } | "before" { name = "before"; } + | + "copy" { name = "copy"; } ; /**