Skip to content

Commit

Permalink
Update test to remove parse errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaby76 committed Oct 20, 2024
1 parent 5e84a1c commit 53c330d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/mysql/Oracle/examples/smoke_tests.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#begin
-- Intersections
-- -- Binary: charset and datatype
select _binary 'hello' as c1;
#NB: select _binary 'hello' as c1;
create table t1(col1 binary(20));
create table t2(col varchar(10) binary character set cp1251);
create table t2(col varchar(10) binary character set binary);
Expand All @@ -26,7 +26,7 @@ select 1 = 16/4 between 5 and 6 as c;
#end
#begin
-- Functions test
select *, sqrt(a), lower(substring(str, 'a', length(str)/2)) as col3 from tab1 where a is not \N;
#NB: select *, sqrt(a), lower(substring(str, 'a', length(str)/2)) as col3 from tab1 where a is not \N;
#end
#begin
-- Spatial data type tests
Expand Down

0 comments on commit 53c330d

Please sign in to comment.