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
7dbc18bd
Commit
7dbc18bd
authored
Apr 21, 2006
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb: corrected install dir
ndb: corrected initialization of records
parent
fa21279e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
mysql-test/Makefile.am
mysql-test/Makefile.am
+2
-2
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+2
-2
No files found.
mysql-test/Makefile.am
View file @
7dbc18bd
...
...
@@ -104,8 +104,8 @@ install-data-local:
$(INSTALL_DATA)
$(srcdir)
/std_data/
*
.pem
$(DESTDIR)$(testdir)
/std_data
$(INSTALL_DATA)
$(srcdir)
/std_data/
*
.frm
$(DESTDIR)$(testdir)
/std_data
$(INSTALL_DATA)
$(srcdir)
/std_data/
*
.cnf
$(DESTDIR)$(testdir)
/std_data
$(INSTALL_DATA)
$(srcdir)
/std_data/ndb_backup50/BACKUP
*
$(testdir)
/std_data/ndb_backup50
$(INSTALL_DATA)
$(srcdir)
/std_data/ndb_backup51/BACKUP
*
$(testdir)
/std_data/ndb_backup51
$(INSTALL_DATA)
$(srcdir)
/std_data/ndb_backup50/BACKUP
*
$(
DESTDIR)$(
testdir)
/std_data/ndb_backup50
$(INSTALL_DATA)
$(srcdir)
/std_data/ndb_backup51/BACKUP
*
$(
DESTDIR)$(
testdir)
/std_data/ndb_backup51
$(INSTALL_DATA)
$(srcdir)
/lib/init_db.sql
$(DESTDIR)$(testdir)
/lib
$(INSTALL_DATA)
$(srcdir)
/lib/
*
.pl
$(DESTDIR)$(testdir)
/lib
...
...
sql/ha_ndbcluster.cc
View file @
7dbc18bd
...
...
@@ -384,14 +384,14 @@ Thd_ndb::get_open_table(THD *thd, const void *key)
thd_ndb_share
->
key
=
key
;
thd_ndb_share
->
stat
.
last_count
=
count
;
thd_ndb_share
->
stat
.
no_uncommitted_rows_count
=
0
;
thd_ndb_share
->
stat
.
records
=
=
~
(
ha_rows
)
0
;
thd_ndb_share
->
stat
.
records
=
~
(
ha_rows
)
0
;
my_hash_insert
(
&
open_tables
,
(
byte
*
)
thd_ndb_share
);
}
else
if
(
thd_ndb_share
->
stat
.
last_count
!=
count
)
{
thd_ndb_share
->
stat
.
last_count
=
count
;
thd_ndb_share
->
stat
.
no_uncommitted_rows_count
=
0
;
thd_ndb_share
->
stat
.
records
=
=
~
(
ha_rows
)
0
;
thd_ndb_share
->
stat
.
records
=
~
(
ha_rows
)
0
;
}
DBUG_PRINT
(
"exit"
,
(
"thd_ndb_share: 0x%x key: 0x%x"
,
thd_ndb_share
,
key
));
DBUG_RETURN
(
thd_ndb_share
);
...
...
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