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
8a24be6e
Commit
8a24be6e
authored
Nov 22, 2017
by
Michael Widenius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Less dependencies in include files
parent
166056f7
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
11 additions
and
16 deletions
+11
-16
include/m_string.h
include/m_string.h
+0
-1
sql/filesort.cc
sql/filesort.cc
+0
-3
sql/item.h
sql/item.h
+0
-2
sql/sql_array.h
sql/sql_array.h
+2
-0
sql/sql_class.h
sql/sql_class.h
+4
-5
sql/sql_lex.h
sql/sql_lex.h
+1
-0
sql/sql_tvc.h
sql/sql_tvc.h
+2
-2
sql/sql_type.h
sql/sql_type.h
+0
-1
sql/sql_window.h
sql/sql_window.h
+0
-1
storage/tokudb/PerconaFT/portability/toku_debug_sync.h
storage/tokudb/PerconaFT/portability/toku_debug_sync.h
+2
-1
No files found.
include/m_string.h
View file @
8a24be6e
...
...
@@ -22,7 +22,6 @@
#ifndef _m_string_h
#define _m_string_h
#include "my_global.h"
/* HAVE_* */
#include "my_decimal_limits.h"
#ifndef __USE_GNU
...
...
sql/filesort.cc
View file @
8a24be6e
...
...
@@ -25,9 +25,6 @@
#include "mariadb.h"
#include "sql_priv.h"
#include "filesort.h"
#ifdef HAVE_STDDEF_H
#include <stddef.h>
/* for macro offsetof */
#endif
#include <m_ctype.h>
#include "sql_sort.h"
#include "probes_mysql.h"
...
...
sql/item.h
View file @
8a24be6e
...
...
@@ -128,8 +128,6 @@ enum precedence {
HIGHEST_PRECEDENCE
};
typedef
Bounds_checked_array
<
Item
*>
Ref_ptr_array
;
bool
mark_unsupported_function
(
const
char
*
where
,
void
*
store
,
uint
result
);
/* convenience helper for mark_unsupported_function() above */
...
...
sql/sql_array.h
View file @
8a24be6e
...
...
@@ -258,4 +258,6 @@ template <class Elem> class Dynamic_array
}
};
typedef
Bounds_checked_array
<
Item
*>
Ref_ptr_array
;
#endif
/* SQL_ARRAY_INCLUDED */
sql/sql_class.h
View file @
8a24be6e
...
...
@@ -2052,11 +2052,6 @@ typedef struct
extern
"C"
void
my_message_sql
(
uint
error
,
const
char
*
str
,
myf
MyFlags
);
class
THD
;
#ifndef DBUG_OFF
void
dbug_serve_apcs
(
THD
*
thd
,
int
n_calls
);
#endif
/**
@class THD
For each client connection we create a separate thread with THD serving as
...
...
@@ -6292,6 +6287,10 @@ class Type_holder: public Sql_alloc,
};
#ifndef DBUG_OFF
void
dbug_serve_apcs
(
THD
*
thd
,
int
n_calls
);
#endif
#endif
/* MYSQL_SERVER */
#endif
/* SQL_CLASS_INCLUDED */
sql/sql_lex.h
View file @
8a24be6e
...
...
@@ -31,6 +31,7 @@
#include "sql_trigger.h"
#include "sp.h" // enum stored_procedure_type
#include "sql_tvc.h"
#include "item.h"
/* YACC and LEX Definitions */
...
...
sql/sql_tvc.h
View file @
8a24be6e
...
...
@@ -16,14 +16,14 @@
#ifndef SQL_TVC_INCLUDED
#define SQL_TVC_INCLUDED
#include "sql_type.h"
#include "item.h"
typedef
List
<
Item
>
List_item
;
class
select_result
;
class
Explain_select
;
class
Explain_query
;
class
Item_func_in
;
class
st_select_lex_unit
;
typedef
class
st_select_lex
SELECT_LEX
;
/**
@class table_value_constr
...
...
sql/sql_type.h
View file @
8a24be6e
...
...
@@ -73,7 +73,6 @@ struct Schema_specification_st;
struct
TABLE
;
struct
SORT_FIELD_ATTR
;
/*
Flags for collation aggregation modes, used in TDCollation::agg():
...
...
sql/sql_window.h
View file @
8a24be6e
...
...
@@ -17,7 +17,6 @@
#ifndef SQL_WINDOW_INCLUDED
#define SQL_WINDOW_INCLUDED
#include "item.h"
#include "filesort.h"
#include "records.h"
...
...
storage/tokudb/PerconaFT/portability/toku_debug_sync.h
View file @
8a24be6e
...
...
@@ -43,13 +43,14 @@ struct tokutxn;
#if defined(ENABLED_DEBUG_SYNC)
/*
the below macros are defined in my_global.h
, which is included in m_string.h,
the below macros are defined in my_global.h
the same macros are defined in TokuSetupCompiler.cmake as compiler options,
undefine them here to avoid build errors
*/
#undef __STDC_FORMAT_MACROS
#undef __STDC_LIMIT_MACROS
#include "my_global.h"
#include "m_string.h"
#include "debug_sync.h"
...
...
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