Skip to content

Commit

Permalink
Somewhere on the way, git seems to have removed Unicode from a test. …
Browse files Browse the repository at this point in the history
…Re-add and remasster.
  • Loading branch information
kaby76 committed Dec 20, 2024
1 parent 6768ac7 commit c242e14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions sql/plsql/examples/lexer02.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
select 'A' | | 'B' from dual

select a ä, b Ḅ from dual;

CREATE OR REPLACE PACKAGE ACCESS_SECURITY AS
-- omitted
END;
2 changes: 1 addition & 1 deletion sql/plsql/examples/lexer02.sql.tree
Original file line number Diff line number Diff line change
@@ -1 +1 @@
(sql_script (unit_statement (data_manipulation_language_statements (select_statement (select_only_statement (subquery (subquery_basic_elements (query_block select (selected_list (select_list_elements (expression (logical_expression (unary_logical_expression (multiset_expression (relational_expression (compound_expression (concatenation (concatenation (model_expression (unary_expression (atom (constant (quoted_string 'A')))))) | | (concatenation (model_expression (unary_expression (atom (constant (quoted_string 'B'))))))))))))))) (from_clause from (table_ref_list (table_ref (table_ref_aux (table_ref_aux_internal (dml_table_expression_clause (tableview_name (identifier (id_expression (regular_id dual))))))))))))))))) <EOF>)
(sql_script (unit_statement (data_manipulation_language_statements (select_statement (select_only_statement (subquery (subquery_basic_elements (query_block select (selected_list (select_list_elements (expression (logical_expression (unary_logical_expression (multiset_expression (relational_expression (compound_expression (concatenation (concatenation (model_expression (unary_expression (atom (constant (quoted_string 'A')))))) | | (concatenation (model_expression (unary_expression (atom (constant (quoted_string 'B'))))))))))))))) (from_clause from (table_ref_list (table_ref (table_ref_aux (table_ref_aux_internal (dml_table_expression_clause (tableview_name (identifier (id_expression (regular_id dual))))))))))))))))) select a ä , b Ḅ from dual ; CREATE OR REPLACE PACKAGE ACCESS_SECURITY AS END ;)

0 comments on commit c242e14

Please sign in to comment.