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
c4574a62
Commit
c4574a62
authored
May 09, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
parents
1bdbbeef
0cf6b6ab
Changes
31
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
36 additions
and
30 deletions
+36
-30
include/my_global.h
include/my_global.h
+5
-0
include/raid.h
include/raid.h
+1
-1
sql/examples/ha_archive.h
sql/examples/ha_archive.h
+1
-1
sql/examples/ha_example.h
sql/examples/ha_example.h
+1
-1
sql/field.h
sql/field.h
+1
-1
sql/ha_berkeley.h
sql/ha_berkeley.h
+1
-1
sql/ha_blackhole.h
sql/ha_blackhole.h
+1
-1
sql/ha_heap.h
sql/ha_heap.h
+1
-1
sql/ha_innodb.h
sql/ha_innodb.h
+1
-1
sql/ha_myisam.h
sql/ha_myisam.h
+1
-1
sql/ha_myisammrg.h
sql/ha_myisammrg.h
+1
-1
sql/ha_ndbcluster.h
sql/ha_ndbcluster.h
+1
-1
sql/handler.h
sql/handler.h
+1
-1
sql/item.h
sql/item.h
+1
-1
sql/item_cmpfunc.h
sql/item_cmpfunc.h
+1
-1
sql/item_func.h
sql/item_func.h
+1
-1
sql/item_geofunc.h
sql/item_geofunc.h
+1
-1
sql/item_strfunc.h
sql/item_strfunc.h
+2
-1
sql/item_subselect.h
sql/item_subselect.h
+1
-1
sql/item_sum.h
sql/item_sum.h
+1
-1
sql/item_timefunc.h
sql/item_timefunc.h
+1
-1
sql/opt_range.h
sql/opt_range.h
+1
-1
sql/procedure.h
sql/procedure.h
+1
-1
sql/protocol.h
sql/protocol.h
+1
-1
sql/set_var.h
sql/set_var.h
+1
-1
sql/sql_class.h
sql/sql_class.h
+1
-1
sql/sql_list.h
sql/sql_list.h
+1
-1
sql/sql_select.h
sql/sql_select.h
+1
-1
sql/sql_string.h
sql/sql_string.h
+1
-1
sql/sql_udf.h
sql/sql_udf.h
+1
-1
sql/tztime.h
sql/tztime.h
+1
-1
No files found.
include/my_global.h
View file @
c4574a62
...
...
@@ -43,6 +43,11 @@
#define HAVE_ERRNO_AS_DEFINE
#endif
/* __CYGWIN__ */
/* Determine when to use "#pragma interface" */
#if !defined(__CYGWIN__) && !defined(__ICC) && defined(__GNUC__) && (__GNUC__ < 3)
#define USE_PRAGMA_INTERFACE
#endif
#if defined(i386) && !defined(__i386__)
#define __i386__
#endif
...
...
include/raid.h
View file @
c4574a62
...
...
@@ -89,7 +89,7 @@ extern "C" {
#ifdef __cplusplus
}
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/examples/ha_archive.h
View file @
c4574a62
...
...
@@ -14,7 +14,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/examples/ha_example.h
View file @
c4574a62
...
...
@@ -21,7 +21,7 @@
that you can implement.
*/
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/field.h
View file @
c4574a62
...
...
@@ -20,7 +20,7 @@
variables must declare the size_of() member function.
*/
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_berkeley.h
View file @
c4574a62
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_blackhole.h
View file @
c4574a62
...
...
@@ -14,7 +14,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_heap.h
View file @
c4574a62
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_innodb.h
View file @
c4574a62
...
...
@@ -21,7 +21,7 @@
Innodb
*/
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_myisam.h
View file @
c4574a62
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_myisammrg.h
View file @
c4574a62
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/ha_ndbcluster.h
View file @
c4574a62
...
...
@@ -21,7 +21,7 @@
/* The class defining a handle to an NDB Cluster table */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/handler.h
View file @
c4574a62
...
...
@@ -17,7 +17,7 @@
/* Definitions for parameters to do with handler-routines */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item.h
View file @
c4574a62
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_cmpfunc.h
View file @
c4574a62
...
...
@@ -17,7 +17,7 @@
/* compare and test functions */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_func.h
View file @
c4574a62
...
...
@@ -17,7 +17,7 @@
/* Function items used by mysql */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_geofunc.h
View file @
c4574a62
...
...
@@ -19,7 +19,7 @@
#ifdef HAVE_SPATIAL
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_strfunc.h
View file @
c4574a62
...
...
@@ -17,7 +17,8 @@
/* This file defines all string functions */
#ifdef __GNUC__
#ifdef USE_PRAGMA_INTERFACE
#error PRAGMA
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_subselect.h
View file @
c4574a62
...
...
@@ -16,7 +16,7 @@
/* subselect Item */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_sum.h
View file @
c4574a62
...
...
@@ -17,7 +17,7 @@
/* classes for sum functions */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/item_timefunc.h
View file @
c4574a62
...
...
@@ -17,7 +17,7 @@
/* Function items used by mysql */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/opt_range.h
View file @
c4574a62
...
...
@@ -20,7 +20,7 @@
#ifndef _opt_range_h
#define _opt_range_h
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/procedure.h
View file @
c4574a62
...
...
@@ -17,7 +17,7 @@
/* When using sql procedures */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/protocol.h
View file @
c4574a62
...
...
@@ -14,7 +14,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/set_var.h
View file @
c4574a62
...
...
@@ -16,7 +16,7 @@
/* Classes to support the SET command */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/sql_class.h
View file @
c4574a62
...
...
@@ -17,7 +17,7 @@
/* Classes in mysql */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/sql_list.h
View file @
c4574a62
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/sql_select.h
View file @
c4574a62
...
...
@@ -17,7 +17,7 @@
/* classes to use when handling where clause */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/sql_string.h
View file @
c4574a62
...
...
@@ -16,7 +16,7 @@
/* This file is originally from the mysql distribution. Coded by monty */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class implementation */
#endif
...
...
sql/sql_udf.h
View file @
c4574a62
...
...
@@ -17,7 +17,7 @@
/* This file defines structures needed by udf functions */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
#endif
...
...
sql/tztime.h
View file @
c4574a62
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef
__GNUC__
#ifdef
USE_PRAGMA_INTERFACE
#pragma interface
/* gcc class interface */
#endif
...
...
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