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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
8c4ade71
Commit
8c4ade71
authored
Mar 22, 2004
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed wrong 'mysql.func' definition
parent
f657ea97
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/install_test_db.sh
mysql-test/install_test_db.sh
+1
-1
mysql-test/r/system_mysql_db.result
mysql-test/r/system_mysql_db.result
+1
-1
No files found.
mysql-test/install_test_db.sh
View file @
8c4ade71
...
...
@@ -173,7 +173,7 @@ fi
if
test
!
-f
$mdata
/func.frm
then
c_f
=
"
$c_f
CREATE TABLE func ("
c_f
=
"
$c_f
name char(64) DEFAULT '' NOT NULL,"
c_f
=
"
$c_f
name char(64)
binary
DEFAULT '' NOT NULL,"
c_f
=
"
$c_f
ret tinyint(1) DEFAULT '0' NOT NULL,"
c_f
=
"
$c_f
dl char(128) DEFAULT '' NOT NULL,"
c_f
=
"
$c_f
type enum ('function','aggregate') NOT NULL,"
...
...
mysql-test/r/system_mysql_db.result
View file @
8c4ade71
...
...
@@ -85,7 +85,7 @@ user CREATE TABLE `user` (
show create table func;
Table Create Table
func CREATE TABLE `func` (
`name` char(64) NOT NULL default '',
`name` char(64)
binary
NOT NULL default '',
`ret` tinyint(1) NOT NULL default '0',
`dl` char(128) NOT NULL default '',
`type` enum('function','aggregate') NOT NULL default 'function',
...
...
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