Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
eac7e9f2
Commit
eac7e9f2
authored
Nov 05, 2001
by
tonu@volk.internalnet
Browse files
Options
Browse Files
Download
Plain Diff
Merge work.mysql.com:/home/bk/mysql-4.0
into volk.internalnet:/home/tonu/mysql-4.0
parents
8e2bfcb8
f23eaeb4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
Docs/manual.texi
Docs/manual.texi
+2
-0
include/sslopt-case.h
include/sslopt-case.h
+1
-1
sql/sql_yacc.yy
sql/sql_yacc.yy
+4
-0
No files found.
Docs/manual.texi
View file @
eac7e9f2
...
...
@@ -48421,6 +48421,8 @@ The CASE Expression.
The MD5() and COALESCE() functions.
@item
@code{RAID} support for @code{MyISAM} tables.
@item
@code{OpenSSL} support for encrypted connections and X509 authentication
@end itemize
@item Sasha Pachev
include/sslopt-case.h
View file @
eac7e9f2
...
...
@@ -36,7 +36,7 @@
break
;
case
OPT_SSL_CAPATH
:
opt_use_ssl
=
1
;
/* true */
my_free
(
opt_ssl_ca
,
MYF
(
MY_ALLOW_ZERO_PTR
));
my_free
(
opt_ssl_ca
path
,
MYF
(
MY_ALLOW_ZERO_PTR
));
opt_ssl_capath
=
my_strdup
(
optarg
,
MYF
(
0
));
break
;
case
OPT_SSL_CIPHER
:
...
...
sql/sql_yacc.yy
View file @
eac7e9f2
...
...
@@ -375,6 +375,8 @@ bool my_yyoverflow(short **a, YYSTYPE **b,int *yystacksize);
%token DAY_SECOND_SYM
%token DAY_SYM
%token DECODE_SYM
%token DES_ENCRYPT
%token DES_DECRYPT
%token ELSE
%token ELT_FUNC
%token ENCODE_SYM
...
...
@@ -1610,6 +1612,8 @@ simple_expr:
{ $$= new Item_func_decode($3,$5.str); }
| ENCODE_SYM '(' expr ',' TEXT_STRING ')'
{ $$= new Item_func_encode($3,$5.str); }
| DES_ENCRYPT '(' expr ',' expr ')' { $$= new Item_func_des_encrypt($3,$5); }
| DES_DECRYPT '(' expr ',' expr ')' { $$= new Item_func_des_decrypt($3,$5); }
| EXPORT_SET '(' expr ',' expr ',' expr ')'
{ $$= new Item_func_export_set($3, $5, $7); }
| EXPORT_SET '(' expr ',' expr ',' expr ',' expr ')'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment