connectivity/source/parse/sqlbison.y |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2f9a27368934c987aab90c417f3d582a4fe7e60e
Author:     jucasaca <[email protected]>
AuthorDate: Sat Jul 22 17:40:58 2023 +0200
Commit:     Michael Stahl <[email protected]>
CommitDate: Wed Aug 2 11:14:21 2023 +0200

    fixing a typo in sqlbison.y
    
    schema_glement_list is not registered, son can't be used. 
schema_element_list is registered and defined and seems to be the correct
    
    Change-Id: I7661532707ce6ddb32b95629192e9ba9847f21df
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154766
    Reviewed-by: Julien Nabet <[email protected]>
    Reviewed-by: Lionel Mamane <[email protected]>
    Tested-by: Lionel Mamane <[email protected]>
    (cherry picked from commit f8a312617838e8626e6e406791ad8d0aac368f23)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155171
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <[email protected]>
    (cherry picked from commit 930c5dd29995a8711a62b2bd13a3d59833d8470d)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155182
    Reviewed-by: Michael Stahl <[email protected]>

diff --git a/connectivity/source/parse/sqlbison.y 
b/connectivity/source/parse/sqlbison.y
index 6db0da9a4180..1740d88cbca6 100644
--- a/connectivity/source/parse/sqlbison.y
+++ b/connectivity/source/parse/sqlbison.y
@@ -323,7 +323,7 @@ schema:
 
 opt_schema_element_list:
                        {$$ = SQL_NEW_RULE;}
-       |       schema_glement_list
+       |       schema_element_list
        ;
 
 schema_element_list:

Reply via email to