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
69a850a1
Commit
69a850a1
authored
Aug 17, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge paul@bk-internal.mysql.com:/home/bk/mysql-4.1
into ice.snake.net:/Volumes/ice2/MySQL/bk/mysql-4.1
parents
90c8dd17
6a808fcc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
4 deletions
+14
-4
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
sql/examples/ha_tina.cc
sql/examples/ha_tina.cc
+5
-0
sql/item_timefunc.cc
sql/item_timefunc.cc
+8
-3
sql/sql_db.cc
sql/sql_db.cc
+0
-1
No files found.
BitKeeper/etc/logging_ok
View file @
69a850a1
...
@@ -95,6 +95,7 @@ miguel@hegel.(none)
...
@@ -95,6 +95,7 @@ miguel@hegel.(none)
miguel@hegel.br
miguel@hegel.br
miguel@hegel.local
miguel@hegel.local
miguel@hegel.txg
miguel@hegel.txg
miguel@hegel.txg.br
miguel@light.
miguel@light.
miguel@light.local
miguel@light.local
miguel@sartre.local
miguel@sartre.local
...
...
sql/examples/ha_tina.cc
View file @
69a850a1
...
@@ -43,6 +43,9 @@
...
@@ -43,6 +43,9 @@
#endif
#endif
#include "mysql_priv.h"
#include "mysql_priv.h"
#ifdef HAVE_CSV_DB
#include "ha_tina.h"
#include "ha_tina.h"
#include <sys/mman.h>
#include <sys/mman.h>
...
@@ -844,3 +847,5 @@ int ha_tina::create(const char *name, TABLE *table_arg, HA_CREATE_INFO *create_i
...
@@ -844,3 +847,5 @@ int ha_tina::create(const char *name, TABLE *table_arg, HA_CREATE_INFO *create_i
DBUG_RETURN
(
0
);
DBUG_RETURN
(
0
);
}
}
#endif
/* enable CSV */
sql/item_timefunc.cc
View file @
69a850a1
...
@@ -113,10 +113,15 @@ static bool make_datetime(date_time_format_types format, TIME *ltime,
...
@@ -113,10 +113,15 @@ static bool make_datetime(date_time_format_types format, TIME *ltime,
}
}
/* Date formats corresponding to compound %r and %T conversion specifiers */
/*
static
DATE_TIME_FORMAT
time_ampm_format
=
{{},
'\0'
,
0
,
Date formats corresponding to compound %r and %T conversion specifiers
Note: We should init at least first element of "positions" array
(first member) or hpux11 compiler will die horribly.
*/
static
DATE_TIME_FORMAT
time_ampm_format
=
{{
0
},
'\0'
,
0
,
{(
char
*
)
"%I:%i:%S %p"
,
11
}};
{(
char
*
)
"%I:%i:%S %p"
,
11
}};
static
DATE_TIME_FORMAT
time_24hrs_format
=
{{},
'\0'
,
0
,
static
DATE_TIME_FORMAT
time_24hrs_format
=
{{
0
},
'\0'
,
0
,
{(
char
*
)
"%H:%i:%S"
,
8
}};
{(
char
*
)
"%H:%i:%S"
,
8
}};
/*
/*
...
...
sql/sql_db.cc
View file @
69a850a1
...
@@ -560,7 +560,6 @@ int mysql_rm_db(THD *thd,char *db,bool if_exists, bool silent)
...
@@ -560,7 +560,6 @@ int mysql_rm_db(THD *thd,char *db,bool if_exists, bool silent)
char
path
[
FN_REFLEN
+
16
],
tmp_db
[
NAME_LEN
+
1
];
char
path
[
FN_REFLEN
+
16
],
tmp_db
[
NAME_LEN
+
1
];
MY_DIR
*
dirp
;
MY_DIR
*
dirp
;
uint
length
;
uint
length
;
my_dbopt_t
*
dbopt
;
DBUG_ENTER
(
"mysql_rm_db"
);
DBUG_ENTER
(
"mysql_rm_db"
);
VOID
(
pthread_mutex_lock
(
&
LOCK_mysql_create_db
));
VOID
(
pthread_mutex_lock
(
&
LOCK_mysql_create_db
));
...
...
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