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
9cbf5b69
Commit
9cbf5b69
authored
Jan 30, 2001
by
sasha@mysql.sashanet.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test oversized password
fix to make table.cc compile
parent
acd45847
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
3 deletions
+6
-3
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+1
-0
mysql-test/t/rpl000017-slave.sh
mysql-test/t/rpl000017-slave.sh
+2
-2
mysql-test/t/rpl000017.test
mysql-test/t/rpl000017.test
+2
-0
sql/table.cc
sql/table.cc
+1
-1
No files found.
mysql-test/mysql-test-run.sh
View file @
9cbf5b69
...
...
@@ -392,6 +392,7 @@ start_slave()
master_info
=
"--master-user=root
\
--master-connect-retry=1
\
--master-host=127.0.0.1
\
--master-password=
\
--master-port=
$MASTER_MYPORT
\
--server-id=2"
else
...
...
mysql-test/t/rpl000017-slave.sh
View file @
9cbf5b69
...
...
@@ -2,8 +2,8 @@ cat > $MYSQL_TEST_DIR/var/slave-data/master.info <<EOF
master-bin.001
4
127.0.0.1
r
oot
r
eplicate
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
9306
1
EOF
mysql-test/t/rpl000017.test
View file @
9cbf5b69
...
...
@@ -2,6 +2,8 @@ connect (master,localhost,root,,test,0,mysql-master.sock);
connect
(
slave
,
localhost
,
root
,,
test
,
0
,
mysql
-
slave
.
sock
);
connection
master
;
reset
master
;
grant
file
on
*.*
to
replicate
@
localhost
identified
by
'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
;
connection
slave
;
slave
start
;
connection
master
;
...
...
sql/table.cc
View file @
9cbf5b69
...
...
@@ -1033,7 +1033,7 @@ char *get_field(MEM_ROOT *mem, TABLE *table, uint fieldnr)
bool
check_db_name
(
const
char
*
name
)
{
const
char
*
start
=
end
;
const
char
*
start
=
name
;
while
(
*
name
)
{
#if defined(USE_MB) && defined(USE_MB_IDENT)
...
...
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