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
f889f088
Commit
f889f088
authored
Jun 02, 2005
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/Users/kent/mysql/bk/mysql-4.1
parents
ed183692
bd48eed9
Changes
42
Hide whitespace changes
Inline
Side-by-side
Showing
42 changed files
with
94 additions
and
10 deletions
+94
-10
client/sql_string.cc
client/sql_string.cc
+2
-1
mysys/raid.cc
mysys/raid.cc
+2
-0
sql/examples/ha_archive.cc
sql/examples/ha_archive.cc
+3
-1
sql/examples/ha_example.cc
sql/examples/ha_example.cc
+3
-1
sql/examples/ha_tina.cc
sql/examples/ha_tina.cc
+3
-1
sql/field.cc
sql/field.cc
+2
-0
sql/ha_berkeley.cc
sql/ha_berkeley.cc
+2
-0
sql/ha_blackhole.cc
sql/ha_blackhole.cc
+2
-0
sql/ha_heap.cc
sql/ha_heap.cc
+2
-0
sql/ha_innodb.cc
sql/ha_innodb.cc
+2
-0
sql/ha_isam.cc
sql/ha_isam.cc
+2
-0
sql/ha_isammrg.cc
sql/ha_isammrg.cc
+2
-0
sql/ha_myisam.cc
sql/ha_myisam.cc
+2
-0
sql/ha_myisammrg.cc
sql/ha_myisammrg.cc
+2
-0
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+2
-0
sql/handler.cc
sql/handler.cc
+2
-0
sql/hash_filo.cc
sql/hash_filo.cc
+2
-0
sql/item.cc
sql/item.cc
+2
-0
sql/item_cmpfunc.cc
sql/item_cmpfunc.cc
+2
-0
sql/item_func.cc
sql/item_func.cc
+2
-0
sql/item_geofunc.cc
sql/item_geofunc.cc
+2
-0
sql/item_strfunc.cc
sql/item_strfunc.cc
+2
-0
sql/item_subselect.cc
sql/item_subselect.cc
+2
-0
sql/item_sum.cc
sql/item_sum.cc
+2
-0
sql/item_timefunc.cc
sql/item_timefunc.cc
+2
-0
sql/item_uniq.cc
sql/item_uniq.cc
+3
-0
sql/log_event.cc
sql/log_event.cc
+3
-0
sql/opt_range.cc
sql/opt_range.cc
+2
-0
sql/procedure.cc
sql/procedure.cc
+2
-0
sql/protocol.cc
sql/protocol.cc
+2
-0
sql/protocol_cursor.cc
sql/protocol_cursor.cc
+2
-0
sql/set_var.cc
sql/set_var.cc
+2
-0
sql/sql_analyse.cc
sql/sql_analyse.cc
+2
-0
sql/sql_class.cc
sql/sql_class.cc
+2
-0
sql/sql_crypt.cc
sql/sql_crypt.cc
+2
-0
sql/sql_list.cc
sql/sql_list.cc
+2
-0
sql/sql_map.cc
sql/sql_map.cc
+2
-0
sql/sql_olap.cc
sql/sql_olap.cc
+2
-0
sql/sql_select.cc
sql/sql_select.cc
+2
-0
sql/sql_string.cc
sql/sql_string.cc
+2
-1
sql/sql_udf.cc
sql/sql_udf.cc
+2
-0
sql/tztime.cc
sql/tztime.cc
+7
-5
No files found.
client/sql_string.cc
View file @
f889f088
...
@@ -16,11 +16,12 @@
...
@@ -16,11 +16,12 @@
/* This file is originally from the mysql distribution. Coded by monty */
/* This file is originally from the mysql distribution. Coded by monty */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
#include <my_global.h>
#include <my_sys.h>
#include <my_sys.h>
#include <m_string.h>
#include <m_string.h>
#include <m_ctype.h>
#include <m_ctype.h>
...
...
mysys/raid.cc
View file @
f889f088
...
@@ -70,6 +70,8 @@
...
@@ -70,6 +70,8 @@
tonu@mysql.com & monty@mysql.com
tonu@mysql.com & monty@mysql.com
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/examples/ha_archive.cc
View file @
f889f088
...
@@ -14,7 +14,9 @@
...
@@ -14,7 +14,9 @@
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef __GNUC__
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/examples/ha_example.cc
View file @
f889f088
...
@@ -63,7 +63,9 @@
...
@@ -63,7 +63,9 @@
-Brian
-Brian
*/
*/
#ifdef __GNUC__
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/examples/ha_tina.cc
View file @
f889f088
...
@@ -38,7 +38,9 @@ TODO:
...
@@ -38,7 +38,9 @@ TODO:
-Brian
-Brian
*/
*/
#ifdef __GNUC__
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/field.cc
View file @
f889f088
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
** This file implements classes defined in field.h
** This file implements classes defined in field.h
*****************************************************************************/
*****************************************************************************/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/ha_berkeley.cc
View file @
f889f088
...
@@ -47,6 +47,8 @@
...
@@ -47,6 +47,8 @@
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/ha_blackhole.cc
View file @
f889f088
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/ha_heap.cc
View file @
f889f088
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/ha_innodb.cc
View file @
f889f088
...
@@ -28,6 +28,8 @@ have disables the InnoDB inlining in this file. */
...
@@ -28,6 +28,8 @@ have disables the InnoDB inlining in this file. */
in Windows?
in Windows?
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/ha_isam.cc
View file @
f889f088
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/ha_isammrg.cc
View file @
f889f088
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/ha_myisam.cc
View file @
f889f088
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/ha_myisammrg.cc
View file @
f889f088
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/ha_ndbcluster.cc
View file @
f889f088
...
@@ -20,6 +20,8 @@
...
@@ -20,6 +20,8 @@
NDB Cluster
NDB Cluster
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/handler.cc
View file @
f889f088
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
/* Handler-calling-functions */
/* Handler-calling-functions */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/hash_filo.cc
View file @
f889f088
...
@@ -20,6 +20,8 @@
...
@@ -20,6 +20,8 @@
** to usage.
** to usage.
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/item.cc
View file @
f889f088
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/item_cmpfunc.cc
View file @
f889f088
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
/* This file defines all compare functions */
/* This file defines all compare functions */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/item_func.cc
View file @
f889f088
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
/* This file defines all numerical functions */
/* This file defines all numerical functions */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/item_geofunc.cc
View file @
f889f088
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
/* This file defines all spatial functions */
/* This file defines all spatial functions */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/item_strfunc.cc
View file @
f889f088
...
@@ -20,6 +20,8 @@
...
@@ -20,6 +20,8 @@
** (This shouldn't be needed)
** (This shouldn't be needed)
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/item_subselect.cc
View file @
f889f088
...
@@ -22,6 +22,8 @@ SUBSELECT TODO:
...
@@ -22,6 +22,8 @@ SUBSELECT TODO:
(sql_select.h/sql_select.cc)
(sql_select.h/sql_select.cc)
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/item_sum.cc
View file @
f889f088
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
/* Sum functions (COUNT, MIN...) */
/* Sum functions (COUNT, MIN...) */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/item_timefunc.cc
View file @
f889f088
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
/* This file defines all time functions */
/* This file defines all time functions */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/item_uniq.cc
View file @
f889f088
...
@@ -15,6 +15,9 @@
...
@@ -15,6 +15,9 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* Compability file */
/* Compability file */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation
#pragma implementation
#endif
#endif
...
...
sql/log_event.cc
View file @
f889f088
...
@@ -16,6 +16,9 @@
...
@@ -16,6 +16,9 @@
#ifndef MYSQL_CLIENT
#ifndef MYSQL_CLIENT
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/opt_range.cc
View file @
f889f088
...
@@ -23,6 +23,8 @@
...
@@ -23,6 +23,8 @@
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/procedure.cc
View file @
f889f088
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
/* Procedures (functions with changes output of select) */
/* Procedures (functions with changes output of select) */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/protocol.cc
View file @
f889f088
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
The actual communction is handled by the net_xxx functions in net_serv.cc
The actual communction is handled by the net_xxx functions in net_serv.cc
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/protocol_cursor.cc
View file @
f889f088
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
The actual communction is handled by the net_xxx functions in net_serv.cc
The actual communction is handled by the net_xxx functions in net_serv.cc
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/set_var.cc
View file @
f889f088
...
@@ -48,6 +48,8 @@
...
@@ -48,6 +48,8 @@
new attribute.
new attribute.
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/sql_analyse.cc
View file @
f889f088
...
@@ -23,6 +23,8 @@
...
@@ -23,6 +23,8 @@
** - type set is out of optimization yet
** - type set is out of optimization yet
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/sql_class.cc
View file @
f889f088
...
@@ -22,6 +22,8 @@
...
@@ -22,6 +22,8 @@
**
**
*****************************************************************************/
*****************************************************************************/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/sql_crypt.cc
View file @
f889f088
...
@@ -23,6 +23,8 @@
...
@@ -23,6 +23,8 @@
needs something like 'ssh'.
needs something like 'ssh'.
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/sql_list.cc
View file @
f889f088
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/sql_map.cc
View file @
f889f088
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/sql_olap.cc
View file @
f889f088
...
@@ -28,6 +28,8 @@
...
@@ -28,6 +28,8 @@
#ifdef DISABLED_UNTIL_REWRITTEN_IN_4_1
#ifdef DISABLED_UNTIL_REWRITTEN_IN_4_1
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/sql_select.cc
View file @
f889f088
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
/* mysql_select and join optimization */
/* mysql_select and join optimization */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
...
...
sql/sql_string.cc
View file @
f889f088
...
@@ -16,11 +16,12 @@
...
@@ -16,11 +16,12 @@
/* This file is originally from the mysql distribution. Coded by monty */
/* This file is originally from the mysql distribution. Coded by monty */
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#pragma implementation // gcc: Class implementation
#endif
#endif
#include <my_global.h>
#include <my_sys.h>
#include <my_sys.h>
#include <m_string.h>
#include <m_string.h>
#include <m_ctype.h>
#include <m_ctype.h>
...
...
sql/sql_udf.cc
View file @
f889f088
...
@@ -28,6 +28,8 @@
...
@@ -28,6 +28,8 @@
** dynamic functions, so this shouldn't be a real problem.
** dynamic functions, so this shouldn't be a real problem.
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: implement sql_udf.h
#pragma implementation // gcc: implement sql_udf.h
#endif
#endif
...
...
sql/tztime.cc
View file @
f889f088
...
@@ -20,18 +20,20 @@
...
@@ -20,18 +20,20 @@
(We will refer to this code as to elsie-code further.)
(We will refer to this code as to elsie-code further.)
*/
*/
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#endif
/*
/*
We should not include mysql_priv.h in mysql_tzinfo_to_sql utility since
We should not include mysql_priv.h in mysql_tzinfo_to_sql utility since
it creates unsolved link dependencies on some platforms.
it creates unsolved link dependencies on some platforms.
*/
*/
#include <my_global.h>
#ifdef USE_PRAGMA_IMPLEMENTATION
#pragma implementation // gcc: Class implementation
#endif
#if !defined(TZINFO2SQL) && !defined(TESTTIME)
#if !defined(TZINFO2SQL) && !defined(TESTTIME)
#include "mysql_priv.h"
#include "mysql_priv.h"
#else
#else
#include <my_global.h>
#include <my_time.h>
#include <my_time.h>
#include "tztime.h"
#include "tztime.h"
#include <my_sys.h>
#include <my_sys.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