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
07b25eaa
Commit
07b25eaa
authored
Nov 03, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed order or template specializations (to make aCC on hpita2 not assert)
parent
8a6f87a2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
ndb/src/common/debugger/signaldata/SignalDataPrint.cpp
ndb/src/common/debugger/signaldata/SignalDataPrint.cpp
+3
-3
ndb/src/common/util/basestring_vsnprintf.c
ndb/src/common/util/basestring_vsnprintf.c
+0
-1
ndb/src/ndbapi/NdbDictionary.cpp
ndb/src/ndbapi/NdbDictionary.cpp
+4
-0
No files found.
ndb/src/common/debugger/signaldata/SignalDataPrint.cpp
View file @
07b25eaa
...
...
@@ -254,9 +254,9 @@ SignalDataPrintFunctions[] = {
,{
0
,
0
}
};
template
class
Bitmask
<
1
>;
template
class
Bitmask
<
2
>;
template
class
Bitmask
<
4
>;
template
struct
BitmaskPOD
<
1
>;
template
struct
BitmaskPOD
<
2
>;
template
struct
BitmaskPOD
<
4
>;
template
class
Bitmask
<
1
>;
template
class
Bitmask
<
2
>;
template
class
Bitmask
<
4
>;
ndb/src/common/util/basestring_vsnprintf.c
View file @
07b25eaa
...
...
@@ -40,7 +40,6 @@ basestring_snprintf(char *str, size_t size, const char *format, ...)
* Let's hope vsnprintf works anyways
*/
#define BASESTRING_VSNPRINTF_FUNC(a,b,c,d) vsnprintf(a,b,c,d)
extern
int
my_vsnprintf
(
char
*
str
,
size_t
size
,
const
char
*
format
,
va_list
ap
);
#endif
#ifdef SNPRINTF_RETURN_TRUNC
static
char
basestring_vsnprintf_buf
[
16
*
1024
];
...
...
ndb/src/ndbapi/NdbDictionary.cpp
View file @
07b25eaa
...
...
@@ -956,6 +956,10 @@ operator<<(NdbOut& out, const NdbDictionary::Column& col)
out
<<
" NOT NULL"
;
else
out
<<
" NULL"
;
if
(
col
.
getDistributionKey
())
out
<<
" DISTRIBUTION KEY"
;
return
out
;
}
...
...
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