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
71a4f92c
Commit
71a4f92c
authored
Aug 20, 2004
by
gluh@gluh.mysql.r18.ru
Browse files
Options
Browse Files
Download
Plain Diff
Merge sgluhov@bk-internal.mysql.com:/home/bk/mysql-4.1
into gluh.mysql.r18.ru:/home/gluh/MySQL/mysql-4.1
parents
6a054ce2
83f78fd5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
16 deletions
+11
-16
bdb/dist/gen_inc.awk
bdb/dist/gen_inc.awk
+11
-11
ndb/src/mgmapi/Makefile.am
ndb/src/mgmapi/Makefile.am
+0
-3
ndb/src/ndbapi/NdbScanOperation.cpp
ndb/src/ndbapi/NdbScanOperation.cpp
+0
-2
No files found.
bdb/dist/gen_inc.awk
View file @
71a4f92c
...
...
@@ -18,20 +18,20 @@
# i_pfile include file that contains internal (PUBLIC) prototypes
/
PUBLIC
:
/
{
sub
(
"^.*PUBLIC:[ ][ ]*"
,
""
)
if
(
$0
~
"^#if|^#ifdef|^#ifndef|^#else|^#endif"
)
{
if
(
$0
~
/^#
(
if|ifdef|ifndef|else|endif
)
/
)
{
print
$0
>>
i_pfile
print
$0
>>
i_dfile
next
}
pline
=
sprintf
(
"%s %s"
,
pline
,
$0
)
if
(
pline
~
"));"
)
{
if
(
pline
~
/
\)\)
;/
)
{
sub
(
"^[ ]*"
,
""
,
pline
)
print
pline
>>
i_pfile
if
(
pline
!~
db_version_unique_name
)
{
def
=
gensub
(
"[ ][ ]*__P.*"
,
""
,
1
,
pline
)
sub
(
"^.*[ ][*]*"
,
""
,
def
)
sub
(
"[ ][ ]*__P.*"
,
""
,
pline
)
sub
(
"^.*[ ][*]*"
,
""
,
pline
)
printf
(
"#define %s %s@DB_VERSION_UNIQUE_NAME@\n"
,
def
,
def
)
>>
i_dfile
pline
,
pline
)
>>
i_dfile
}
pline
=
""
}
...
...
@@ -53,20 +53,20 @@
# functions in libraries built with that configuration option.
/EXTERN:/
{
sub
(
"^.*EXTERN:[ ][ ]*"
,
""
)
if
(
$0
~
"^#if|^#ifdef|^#ifndef|^#else|^#endif"
)
{
if
(
$0
~
/^#
(
if|ifdef|ifndef|else|endif
)
/
)
{
print
$0
>>
e_pfile
print
$0
>>
e_dfile
next
}
eline
=
sprintf
(
"%s %s"
,
eline
,
$0
)
if
(
eline
~
"));"
)
{
if
(
eline
~
/
\)\)
;/
)
{
sub
(
"^[ ]*"
,
""
,
eline
)
print
eline
>>
e_pfile
if
(
eline
!~
db_version_unique_name
&&
eline
!~
"^int txn_"
)
{
def
=
gensub
(
"[ ][ ]*__P.*"
,
""
,
1
,
eline
)
sub
(
"^.*[ ][*]*"
,
""
,
def
)
if
(
eline
!~
db_version_unique_name
&&
eline
!~
/^int txn_/
)
{
sub
(
"[ ][ ]*__P.*"
,
""
,
eline
)
sub
(
"^.*[ ][*]*"
,
""
,
eline
)
printf
(
"#define %s %s@DB_VERSION_UNIQUE_NAME@\n"
,
def
,
def
)
>>
e_dfile
eline
,
eline
)
>>
e_dfile
}
eline
=
""
}
...
...
ndb/src/mgmapi/Makefile.am
View file @
71a4f92c
...
...
@@ -10,9 +10,6 @@ include $(top_srcdir)/ndb/config/common.mk.am
include
$(top_srcdir)/ndb/config/type_util.mk.am
#ndbtest_PROGRAMS = ndb_test_mgmapi
#ndb_test_mgmapi_SOURCES = test_mgmapi.cpp
#ndb_test_mgmapi_LDFLAGS = @ndb_bin_am_ldflags@
# $(top_builddir)/ndb/src/libndbclient.la
# Don't update the files from bitkeeper
%
::
SCCS/s.%
ndb/src/ndbapi/NdbScanOperation.cpp
View file @
71a4f92c
...
...
@@ -664,8 +664,6 @@ NdbScanOperation::doSend(int ProcessorId)
void
NdbScanOperation
::
closeScan
()
{
int
self
=
pthread_self
()
;
if
(
m_transConnection
)
do
{
if
(
DEBUG_NEXT_RESULT
)
ndbout_c
(
"closeScan() theError.code = %d "
...
...
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