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
dea5b47d
Commit
dea5b47d
authored
Jan 28, 2005
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.0
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.0-ndb
parents
aacea280
2f63bccc
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
239 additions
and
76 deletions
+239
-76
Build-tools/Do-compile
Build-tools/Do-compile
+1
-1
configure.in
configure.in
+0
-10
innobase/include/rem0rec.ic
innobase/include/rem0rec.ic
+2
-2
innobase/include/trx0trx.h
innobase/include/trx0trx.h
+3
-1
innobase/row/row0mysql.c
innobase/row/row0mysql.c
+0
-12
mysql-test/r/ndb_index_ordered.result
mysql-test/r/ndb_index_ordered.result
+34
-10
mysql-test/t/ndb_index_ordered.test
mysql-test/t/ndb_index_ordered.test
+20
-10
ndb/include/kernel/signaldata/DictTabInfo.hpp
ndb/include/kernel/signaldata/DictTabInfo.hpp
+11
-1
ndb/include/ndb_constants.h
ndb/include/ndb_constants.h
+3
-1
ndb/include/ndbapi/NdbDictionary.hpp
ndb/include/ndbapi/NdbDictionary.hpp
+3
-1
ndb/include/ndbapi/NdbScanFilter.hpp
ndb/include/ndbapi/NdbScanFilter.hpp
+1
-1
ndb/include/util/NdbSqlUtil.hpp
ndb/include/util/NdbSqlUtil.hpp
+5
-1
ndb/src/common/portlib/NdbThread.c
ndb/src/common/portlib/NdbThread.c
+2
-2
ndb/src/common/util/NdbSqlUtil.cpp
ndb/src/common/util/NdbSqlUtil.cpp
+42
-0
ndb/src/ndbapi/NdbDictionary.cpp
ndb/src/ndbapi/NdbDictionary.cpp
+6
-0
ndb/src/ndbapi/NdbDictionaryImpl.cpp
ndb/src/ndbapi/NdbDictionaryImpl.cpp
+2
-0
ndb/src/ndbapi/NdbRecAttr.cpp
ndb/src/ndbapi/NdbRecAttr.cpp
+90
-9
ndb/test/include/NdbSchemaOp.hpp
ndb/test/include/NdbSchemaOp.hpp
+0
-4
sql/ha_innodb.cc
sql/ha_innodb.cc
+3
-2
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+11
-8
No files found.
Build-tools/Do-compile
View file @
dea5b47d
...
...
@@ -156,7 +156,7 @@ $ENV{'MYSQL_TCP_PORT'}= $mysql_tcp_port= 3334 + $opt_build_thread*2;
$ENV
{'
MYSQL_UNIX_PORT
'}
=
$mysql_unix_port
=
"
$opt_tmp
/mysql
$opt_suffix
.build
";
$ENV
{"
PERL5LIB
"}
=
"
$pwd
/
$host
/perl5:
$pwd
/
$host
/perl5/site_perl
";
$slave_port
=
$mysql_tcp_port
+
16
;
$ndbcluster_port
=
9350
+
$opt_build_thread
*
2
;
$ndbcluster_port
=
9350
+
$opt_build_thread
*
4
;
$manager_port
=
$mysql_tcp_port
+
1
;
$mysqladmin_args
=
"
--no-defaults -u root --connect_timeout=5 --shutdown_timeout=20
";
...
...
configure.in
View file @
dea5b47d
...
...
@@ -1531,14 +1531,11 @@ then
fi
fi
TOOLS_LIBS="
$NON_THREADED_CLIENT_LIBS
"
# Should we use named pthread library ?
AC_MSG_CHECKING("
named thread libs:
")
if test "
$with_named_thread
" != "
no
"
then
LIBS="
$with_named_thread
$LIBS
$with_named_thread
"
TOOLS_LIBS="
$with_named_thread
$TOOLS_LIBS
$with_named_thread
"
with_posix_threads="
yes
"
with_mit_threads="
no
"
AC_MSG_RESULT("
$with_named_thread
")
...
...
@@ -1557,9 +1554,7 @@ else
then
AC_MSG_CHECKING("
for
pthread_create
in
-lpthread
");
ac_save_LIBS="
$LIBS
"
ac_save_TOOLS_LIBS="
$TOOLS_LIBS
"
LIBS="
$LIBS
-lpthread
"
TOOLS_LIBS="
$TOOLS_LIBS
-lpthread
"
AC_TRY_LINK(
[#include <pthread.h>],
[ (void) pthread_create((pthread_t*) 0,(pthread_attr_t*) 0, 0, 0); ],
...
...
@@ -1568,7 +1563,6 @@ else
if test "
$with_posix_threads
" = "
no
"
then
LIBS="
$ac_save_LIBS
-lpthreads
"
TOOLS_LIBS="
$ac_save_TOOLS_LIBS
-lpthreads
"
AC_MSG_CHECKING("
for
pthread_create
in
-lpthreads
");
AC_TRY_LINK(
[#include <pthread.h>],
...
...
@@ -1579,7 +1573,6 @@ else
then
# This is for FreeBSD
LIBS="
$ac_save_LIBS
-pthread
"
TOOLS_LIBS="
$ac_save_TOOLS_LIBS
-pthread
"
AC_MSG_CHECKING("
for
pthread_create
in
-pthread
");
AC_TRY_LINK(
[#include <pthread.h>],
...
...
@@ -1590,7 +1583,6 @@ else
then
with_mit_threads="
yes
"
LIBS="
$ac_save_LIBS
"
TOOLS_LIBS="
$ac_save_TOOLS_LIBS
"
fi
fi
fi
...
...
@@ -2656,8 +2648,6 @@ AC_SUBST(sql_union_dirs)
# Some usefull subst
AC_SUBST
(
CC
)
AC_SUBST
(
GXX
)
#Remove TOOLS_LIBS, because this is included in LIBRARIES
#AC_SUBST(TOOLS_LIBS)
# Set configuration options for make_binary_distribution
case
$SYSTEM_TYPE
in
...
...
innobase/include/rem0rec.ic
View file @
dea5b47d
...
...
@@ -526,7 +526,7 @@ bits of a record. (Only compact records have status bits.) */
UNIV_INLINE
ulint
rec_get_info_and_status_bits(
/*==============*/
/*==============
===========
*/
/* out: info bits */
rec_t* rec, /* in: physical record */
ibool comp) /* in: TRUE=compact page format */
...
...
@@ -550,7 +550,7 @@ bits of a record. (Only compact records have status bits.) */
UNIV_INLINE
void
rec_set_info_and_status_bits(
/*==============*/
/*==============
===========
*/
rec_t* rec, /* in: physical record */
ibool comp, /* in: TRUE=compact page format */
ulint bits) /* in: info bits */
...
...
innobase/include/trx0trx.h
View file @
dea5b47d
...
...
@@ -383,7 +383,9 @@ struct trx_struct{
dulint
commit_lsn
;
/* lsn at the time of the commit */
ibool
dict_operation
;
/* TRUE if the trx is used to create
a table, create an index, or drop a
table */
table. This is a hint that the table
may need to be dropped in crash
recovery. */
dulint
table_id
;
/* table id if the preceding field is
TRUE */
/*------------------------------*/
...
...
innobase/row/row0mysql.c
View file @
dea5b47d
...
...
@@ -2561,17 +2561,6 @@ do not allow the TRUNCATE. We also reserve the data dictionary latch. */
goto
funct_exit
;
}
if
(
table
->
n_mysql_handles_opened
>
1
)
{
ut_print_timestamp
(
stderr
);
fputs
(
" InnoDB: Warning: MySQL is trying to truncate table "
,
stderr
);
ut_print_name
(
stderr
,
trx
,
table
->
name
);
fputs
(
"
\n
"
"InnoDB: though there are still open handles to it.
\n
"
,
stderr
);
err
=
DB_ERROR
;
goto
funct_exit
;
}
/* TODO: could we replace the counter n_foreign_key_checks_running
with lock checks on the table? Acquire here an exclusive lock on the
table, and rewrite lock0lock.c and the lock wait in srv0srv.c so that
...
...
@@ -2594,7 +2583,6 @@ fputs(" InnoDB: Warning: MySQL is trying to truncate table ", stderr);
lock_reset_all_on_table
(
table
);
trx
->
dict_operation
=
TRUE
;
trx
->
table_id
=
table
->
id
;
/* scan SYS_INDEXES for all indexes of the table */
...
...
mysql-test/r/ndb_index_ordered.result
View file @
dea5b47d
...
...
@@ -432,16 +432,16 @@ index(ye),
index(ti),
index(ts)
) engine=ndb;
insert into t1 (pk,dt,da,ye,ti) values
(1, '1901-05-05 23:00:59', '1901-05-05', '1901', '23:00:59'),
(2, '1912-09-05 13:00:59', '1912-09-05', '1912', '13:00:59'),
(3, '1945-12-31 00:00:00', '1945-12-31', '1945', '00:00:00'),
(4, '1955-12-31 00:00:00', '1955-12-31', '1955', '00:00:00'),
(5, '1963-06-06 06:06:06', '1963-06-06', '1963', '06:06:06'),
(6, '1993-06-06 06:06:06', '1993-06-06', '1993', '06:06:06'),
(7, '2001-01-01 10:11:10', '2001-01-01', '2001', '10:11:10'),
(8, '2001-01-01 10:11:11', '2001-01-01', '2001', '10:11:11'),
(9, '2005-01-31 23:59:59', '2005-01-31', '2005', '23:59:59');
insert into t1 (pk,dt,da,ye,ti
,ts
) values
(1, '1901-05-05 23:00:59', '1901-05-05', '1901', '23:00:59'
, '2001-01-01 23:00:59'
),
(2, '1912-09-05 13:00:59', '1912-09-05', '1912', '13:00:59'
, '2001-01-01 13:00:59'
),
(3, '1945-12-31 00:00:00', '1945-12-31', '1945', '00:00:00'
, '2001-01-01 00:00:00'
),
(4, '1955-12-31 00:00:00', '1955-12-31', '1955', '00:00:00'
, '2001-01-01 00:00:00'
),
(5, '1963-06-06 06:06:06', '1963-06-06', '1963', '06:06:06'
, '2001-01-01 06:06:06'
),
(6, '1993-06-06 06:06:06', '1993-06-06', '1993', '06:06:06'
, '2001-01-01 06:06:06'
),
(7, '2001-01-01 10:11:10', '2001-01-01', '2001', '10:11:10'
, '2001-01-01 10:11:10'
),
(8, '2001-01-01 10:11:11', '2001-01-01', '2001', '10:11:11'
, '2001-01-01 10:11:11'
),
(9, '2005-01-31 23:59:59', '2005-01-31', '2005', '23:59:59'
, '2001-01-01 23:59:59'
);
select count(*)-9 from t1 use index (dt) where dt > '1900-01-01 00:00:00';
count(*)-9
0
...
...
@@ -529,6 +529,30 @@ count(*)-8
select count(*)-9 from t1 use index (ti) where ti <= '23:59:59';
count(*)-9
0
select count(*)-9 from t1 use index (ts) where ts >= '2001-01-01 00:00:00';
count(*)-9
0
select count(*)-7 from t1 use index (ts) where ts > '2001-01-01 00:00:00';
count(*)-7
0
select count(*)-7 from t1 use index (ts) where ts > '2001-01-01 05:05:05';
count(*)-7
0
select count(*)-5 from t1 use index (ts) where ts > '2001-01-01 06:06:06';
count(*)-5
0
select count(*)-5 from t1 use index (ts) where ts < '2001-01-01 10:11:11';
count(*)-5
0
select count(*)-6 from t1 use index (ts) where ts <= '2001-01-01 10:11:11';
count(*)-6
0
select count(*)-8 from t1 use index (ts) where ts < '2001-01-01 23:59:59';
count(*)-8
0
select count(*)-9 from t1 use index (ts) where ts <= '2001-01-01 23:59:59';
count(*)-9
0
drop table t1;
create table t1(a int primary key, b int not null, index(b));
insert into t1 values (1,1), (2,2);
...
...
mysql-test/t/ndb_index_ordered.test
View file @
dea5b47d
...
...
@@ -220,16 +220,16 @@ create table t1 (
index
(
ts
)
)
engine
=
ndb
;
insert
into
t1
(
pk
,
dt
,
da
,
ye
,
ti
)
values
(
1
,
'1901-05-05 23:00:59'
,
'1901-05-05'
,
'1901'
,
'23:00:59'
),
(
2
,
'1912-09-05 13:00:59'
,
'1912-09-05'
,
'1912'
,
'13:00:59'
),
(
3
,
'1945-12-31 00:00:00'
,
'1945-12-31'
,
'1945'
,
'00:00:00'
),
(
4
,
'1955-12-31 00:00:00'
,
'1955-12-31'
,
'1955'
,
'00:00:00'
),
(
5
,
'1963-06-06 06:06:06'
,
'1963-06-06'
,
'1963'
,
'06:06:06'
),
(
6
,
'1993-06-06 06:06:06'
,
'1993-06-06'
,
'1993'
,
'06:06:06'
),
(
7
,
'2001-01-01 10:11:10'
,
'2001-01-01'
,
'2001'
,
'10:11:10'
),
(
8
,
'2001-01-01 10:11:11'
,
'2001-01-01'
,
'2001'
,
'10:11:11'
),
(
9
,
'2005-01-31 23:59:59'
,
'2005-01-31'
,
'2005'
,
'23:59:59'
);
insert
into
t1
(
pk
,
dt
,
da
,
ye
,
ti
,
ts
)
values
(
1
,
'1901-05-05 23:00:59'
,
'1901-05-05'
,
'1901'
,
'23:00:59'
,
'2001-01-01 23:00:59'
),
(
2
,
'1912-09-05 13:00:59'
,
'1912-09-05'
,
'1912'
,
'13:00:59'
,
'2001-01-01 13:00:59'
),
(
3
,
'1945-12-31 00:00:00'
,
'1945-12-31'
,
'1945'
,
'00:00:00'
,
'2001-01-01 00:00:00'
),
(
4
,
'1955-12-31 00:00:00'
,
'1955-12-31'
,
'1955'
,
'00:00:00'
,
'2001-01-01 00:00:00'
),
(
5
,
'1963-06-06 06:06:06'
,
'1963-06-06'
,
'1963'
,
'06:06:06'
,
'2001-01-01 06:06:06'
),
(
6
,
'1993-06-06 06:06:06'
,
'1993-06-06'
,
'1993'
,
'06:06:06'
,
'2001-01-01 06:06:06'
),
(
7
,
'2001-01-01 10:11:10'
,
'2001-01-01'
,
'2001'
,
'10:11:10'
,
'2001-01-01 10:11:10'
),
(
8
,
'2001-01-01 10:11:11'
,
'2001-01-01'
,
'2001'
,
'10:11:11'
,
'2001-01-01 10:11:11'
),
(
9
,
'2005-01-31 23:59:59'
,
'2005-01-31'
,
'2005'
,
'23:59:59'
,
'2001-01-01 23:59:59'
);
# datetime
select
count
(
*
)
-
9
from
t1
use
index
(dt) where dt > '1900-01-01 00:00:00'
;
...
...
@@ -268,6 +268,16 @@ select count(*)-6 from t1 use index (ti) where ti <= '10:11:11';
select
count
(
*
)
-
8
from
t1
use
index
(ti) where ti < '23:59:59'
;
select
count
(
*
)
-
9
from
t1
use
index
(ti) where ti <= '23:59:59'
;
# timestamp
select
count
(
*
)
-
9
from
t1
use
index
(ts) where ts >= '2001-01-01 00:00:00'
;
select
count
(
*
)
-
7
from
t1
use
index
(ts) where ts > '2001-01-01 00:00:00'
;
select
count
(
*
)
-
7
from
t1
use
index
(ts) where ts > '2001-01-01 05:05:05'
;
select
count
(
*
)
-
5
from
t1
use
index
(ts) where ts > '2001-01-01 06:06:06'
;
select
count
(
*
)
-
5
from
t1
use
index
(ts) where ts < '2001-01-01 10:11:11'
;
select
count
(
*
)
-
6
from
t1
use
index
(ts) where ts <= '2001-01-01 10:11:11'
;
select
count
(
*
)
-
8
from
t1
use
index
(ts) where ts < '2001-01-01 23:59:59'
;
select
count
(
*
)
-
9
from
t1
use
index
(ts) where ts <= '2001-01-01 23:59:59'
;
drop
table
t1
;
# bug#7798
...
...
ndb/include/kernel/signaldata/DictTabInfo.hpp
View file @
dea5b47d
...
...
@@ -276,7 +276,9 @@ public:
ExtBit
=
NdbSqlUtil
::
Type
::
Bit
,
ExtLongvarchar
=
NdbSqlUtil
::
Type
::
Longvarchar
,
ExtLongvarbinary
=
NdbSqlUtil
::
Type
::
Longvarbinary
,
ExtTime
=
NdbSqlUtil
::
Type
::
Time
ExtTime
=
NdbSqlUtil
::
Type
::
Time
,
ExtYear
=
NdbSqlUtil
::
Type
::
Year
,
ExtTimestamp
=
NdbSqlUtil
::
Type
::
Timestamp
};
// Attribute data interpretation
...
...
@@ -389,6 +391,14 @@ public:
AttributeSize
=
DictTabInfo
::
an8Bit
;
AttributeArraySize
=
3
*
AttributeExtLength
;
break
;
case
DictTabInfo
:
:
ExtYear
:
AttributeSize
=
DictTabInfo
::
an8Bit
;
AttributeArraySize
=
1
*
AttributeExtLength
;
break
;
case
DictTabInfo
:
:
ExtTimestamp
:
AttributeSize
=
DictTabInfo
::
an8Bit
;
AttributeArraySize
=
4
*
AttributeExtLength
;
break
;
default:
return
false
;
};
...
...
ndb/include/ndb_constants.h
View file @
dea5b47d
...
...
@@ -61,7 +61,9 @@
#define NDB_TYPE_LONG_VARCHAR 23
#define NDB_TYPE_LONG_VARBINARY 24
#define NDB_TYPE_TIME 25
#define NDB_TYPE_YEAR 26
#define NDB_TYPE_TIMESTAMP 27
#define NDB_TYPE_MAX 2
6
#define NDB_TYPE_MAX 2
8
#endif
ndb/include/ndbapi/NdbDictionary.hpp
View file @
dea5b47d
...
...
@@ -196,7 +196,9 @@ public:
Bit
=
NDB_TYPE_BIT
,
///< Bit, length specifies no of bits
Longvarchar
=
NDB_TYPE_LONG_VARCHAR
,
///< Length bytes: 2, little-endian
Longvarbinary
=
NDB_TYPE_LONG_VARBINARY
,
///< Length bytes: 2, little-endian
Time
=
NDB_TYPE_TIME
///< Time without date
Time
=
NDB_TYPE_TIME
,
///< Time without date
Year
=
NDB_TYPE_YEAR
,
///< Year 1901-2155 (1 byte)
Timestamp
=
NDB_TYPE_TIMESTAMP
///< Unix time
};
/**
...
...
ndb/include/ndbapi/NdbScanFilter.hpp
View file @
dea5b47d
...
...
@@ -53,7 +53,7 @@ public:
COND_GE
=
2
,
///< upper bound
COND_GT
=
3
,
///< upper bound, strict
COND_EQ
=
4
,
///< equality
COND_NE
=
5
COND_NE
=
5
///< not equal
};
/**
...
...
ndb/include/util/NdbSqlUtil.hpp
View file @
dea5b47d
...
...
@@ -92,7 +92,9 @@ public:
Bit
=
NDB_TYPE_BIT
,
Longvarchar
=
NDB_TYPE_LONG_VARCHAR
,
Longvarbinary
=
NDB_TYPE_LONG_VARBINARY
,
Time
=
NDB_TYPE_TIME
Time
=
NDB_TYPE_TIME
,
Year
=
NDB_TYPE_YEAR
,
Timestamp
=
NDB_TYPE_TIMESTAMP
};
Enum
m_typeId
;
// redundant
Cmp
*
m_cmp
;
// comparison method
...
...
@@ -161,6 +163,8 @@ private:
static
Cmp
cmpLongvarchar
;
static
Cmp
cmpLongvarbinary
;
static
Cmp
cmpTime
;
static
Cmp
cmpYear
;
static
Cmp
cmpTimestamp
;
};
#endif
ndb/src/common/portlib/NdbThread.c
View file @
dea5b47d
...
...
@@ -39,14 +39,14 @@ struct NdbThread
static
void
*
ndb_thread_wrapper
(
void
*
_ss
){
DBUG_ENTER
(
"ndb_thread_wrapper"
);
void
*
ret
;
struct
NdbThread
*
ss
=
(
struct
NdbThread
*
)
_ss
;
DBUG_ENTER
(
"ndb_thread_wrapper"
);
#ifdef NDB_SHM_TRANSPORTER
if
(
g_ndb_shm_signum
)
{
DBUG_PRINT
(
"info"
,(
"Block signum %d"
,
g_ndb_shm_signum
));
sigset_t
mask
;
DBUG_PRINT
(
"info"
,(
"Block signum %d"
,
g_ndb_shm_signum
));
sigemptyset
(
&
mask
);
sigaddset
(
&
mask
,
g_ndb_shm_signum
);
pthread_sigmask
(
SIG_BLOCK
,
&
mask
,
0
);
...
...
ndb/src/common/util/NdbSqlUtil.cpp
View file @
dea5b47d
...
...
@@ -179,6 +179,14 @@ NdbSqlUtil::m_typeList[] = {
{
Type
::
Time
,
cmpTime
},
{
Type
::
Year
,
cmpYear
},
{
Type
::
Timestamp
,
cmpTimestamp
}
};
...
...
@@ -670,6 +678,40 @@ NdbSqlUtil::cmpLongvarbinary(const void* info, const void* p1, unsigned n1, cons
return
CmpUnknown
;
}
int
NdbSqlUtil
::
cmpYear
(
const
void
*
info
,
const
void
*
p1
,
unsigned
n1
,
const
void
*
p2
,
unsigned
n2
,
bool
full
)
{
if
(
n2
>=
sizeof
(
Uint8
))
{
Uint8
v1
,
v2
;
memcpy
(
&
v1
,
p1
,
sizeof
(
Uint8
));
memcpy
(
&
v2
,
p2
,
sizeof
(
Uint8
));
if
(
v1
<
v2
)
return
-
1
;
if
(
v1
>
v2
)
return
+
1
;
return
0
;
}
assert
(
!
full
);
return
CmpUnknown
;
}
int
NdbSqlUtil
::
cmpTimestamp
(
const
void
*
info
,
const
void
*
p1
,
unsigned
n1
,
const
void
*
p2
,
unsigned
n2
,
bool
full
)
{
if
(
n2
>=
sizeof
(
Uint32
))
{
Uint32
v1
,
v2
;
memcpy
(
&
v1
,
p1
,
sizeof
(
Uint32
));
memcpy
(
&
v2
,
p2
,
sizeof
(
Uint32
));
if
(
v1
<
v2
)
return
-
1
;
if
(
v1
>
v2
)
return
+
1
;
return
0
;
}
assert
(
!
full
);
return
CmpUnknown
;
}
// check charset
bool
...
...
ndb/src/ndbapi/NdbDictionary.cpp
View file @
dea5b47d
...
...
@@ -980,6 +980,12 @@ operator<<(NdbOut& out, const NdbDictionary::Column& col)
case
NdbDictionary
:
:
Column
::
Time
:
out
<<
"Time"
;
break
;
case
NdbDictionary
:
:
Column
::
Year
:
out
<<
"Year"
;
break
;
case
NdbDictionary
:
:
Column
::
Timestamp
:
out
<<
"Timestamp"
;
break
;
case
NdbDictionary
:
:
Column
::
Undefined
:
out
<<
"Undefined"
;
break
;
...
...
ndb/src/ndbapi/NdbDictionaryImpl.cpp
View file @
dea5b47d
...
...
@@ -144,6 +144,8 @@ NdbColumnImpl::init(Type t)
m_cs
=
default_cs
;
break
;
case
Time
:
case
Year
:
case
Timestamp
:
m_precision
=
0
;
m_scale
=
0
;
m_length
=
1
;
...
...
ndb/src/ndbapi/NdbRecAttr.cpp
View file @
dea5b47d
...
...
@@ -178,10 +178,11 @@ NdbOut& operator<<(NdbOut& out, const NdbRecAttr &r)
return
out
;
}
if
(
r
.
arraySize
()
>
1
)
uint
length
=
r
.
getColumn
()
->
getLength
();
if
(
length
>
1
)
out
<<
"["
;
for
(
Uint32
j
=
0
;
j
<
r
.
arraySize
()
;
j
++
)
for
(
Uint32
j
=
0
;
j
<
length
;
j
++
)
{
if
(
j
>
0
)
out
<<
" "
;
...
...
@@ -221,13 +222,13 @@ NdbOut& operator<<(NdbOut& out, const NdbRecAttr &r)
break
;
case
NdbDictionary
:
:
Column
::
Char
:
ndbrecattr_print_string
(
out
,
"Char"
,
r
.
aRef
(),
r
.
arraySize
());
j
=
r
.
arraySize
()
;
j
=
length
;
break
;
case
NdbDictionary
:
:
Column
::
Varchar
:
{
unsigned
len
=
*
(
const
unsigned
char
*
)
r
.
aRef
();
ndbrecattr_print_string
(
out
,
"Varchar"
,
r
.
aRef
()
+
1
,
len
);
j
=
r
.
arraySize
()
;
j
=
length
;
}
break
;
case
NdbDictionary
:
:
Column
::
Float
:
...
...
@@ -236,6 +237,86 @@ NdbOut& operator<<(NdbOut& out, const NdbRecAttr &r)
case
NdbDictionary
:
:
Column
::
Double
:
out
<<
r
.
double_value
();
break
;
// for dates cut-and-paste from field.cc
case
NdbDictionary
:
:
Column
::
Datetime
:
{
ulonglong
tmp
=
r
.
u_64_value
();
long
part1
,
part2
,
part3
;
part1
=
(
long
)
(
tmp
/
LL
(
1000000
));
part2
=
(
long
)
(
tmp
-
(
ulonglong
)
part1
*
LL
(
1000000
));
char
buf
[
40
];
char
*
pos
=
(
char
*
)
buf
+
19
;
*
pos
--=
0
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part2
%
10
));
part2
/=
10
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part2
%
10
));
part3
=
(
int
)
(
part2
/
10
);
*
pos
--=
':'
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part3
%
10
));
part3
/=
10
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part3
%
10
));
part3
/=
10
;
*
pos
--=
':'
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part3
%
10
));
part3
/=
10
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
part3
);
*
pos
--=
'/'
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part1
%
10
));
part1
/=
10
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part1
%
10
));
part1
/=
10
;
*
pos
--=
'-'
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part1
%
10
));
part1
/=
10
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part1
%
10
));
part3
=
(
int
)
(
part1
/
10
);
*
pos
--=
'-'
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part3
%
10
));
part3
/=
10
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part3
%
10
));
part3
/=
10
;
*
pos
--=
(
char
)
(
'0'
+
(
char
)
(
part3
%
10
));
part3
/=
10
;
*
pos
=
(
char
)
(
'0'
+
(
char
)
part3
);
out
<<
buf
;
}
break
;
case
NdbDictionary
:
:
Column
::
Date
:
{
uint32
tmp
=
(
uint32
)
uint3korr
(
r
.
aRef
());
int
part
;
char
buf
[
40
];
char
*
pos
=
(
char
*
)
buf
+
10
;
*
pos
--=
0
;
part
=
(
int
)
(
tmp
&
31
);
*
pos
--=
(
char
)
(
'0'
+
part
%
10
);
*
pos
--=
(
char
)
(
'0'
+
part
/
10
);
*
pos
--=
'-'
;
part
=
(
int
)
(
tmp
>>
5
&
15
);
*
pos
--=
(
char
)
(
'0'
+
part
%
10
);
*
pos
--=
(
char
)
(
'0'
+
part
/
10
);
*
pos
--=
'-'
;
part
=
(
int
)
(
tmp
>>
9
);
*
pos
--=
(
char
)
(
'0'
+
part
%
10
);
part
/=
10
;
*
pos
--=
(
char
)
(
'0'
+
part
%
10
);
part
/=
10
;
*
pos
--=
(
char
)
(
'0'
+
part
%
10
);
part
/=
10
;
*
pos
=
(
char
)
(
'0'
+
part
);
out
<<
buf
;
}
break
;
case
NdbDictionary
:
:
Column
::
Time
:
{
long
tmp
=
(
long
)
sint3korr
(
r
.
aRef
());
int
hour
=
(
uint
)
(
tmp
/
10000
);
int
minute
=
(
uint
)
(
tmp
/
100
%
100
);
int
second
=
(
uint
)
(
tmp
%
100
);
char
buf
[
40
];
sprintf
(
buf
,
"%02d:%02d:%02d"
,
hour
,
minute
,
second
);
out
<<
buf
;
}
break
;
case
NdbDictionary
:
:
Column
::
Year
:
{
uint
year
=
1900
+
r
.
u_char_value
();
char
buf
[
40
];
sprintf
(
buf
,
"%04d"
,
year
);
out
<<
buf
;
}
break
;
case
NdbDictionary
:
:
Column
::
Timestamp
:
{
time_t
time
=
r
.
u_32_value
();
out
<<
(
uint
)
time
;
}
break
;
case
NdbDictionary
:
:
Column
::
Blob
:
{
const
NdbBlob
::
Head
*
h
=
(
const
NdbBlob
::
Head
*
)
r
.
aRef
();
...
...
@@ -244,7 +325,7 @@ NdbOut& operator<<(NdbOut& out, const NdbRecAttr &r)
unsigned
n
=
r
.
arraySize
()
-
sizeof
(
*
h
);
for
(
unsigned
k
=
0
;
k
<
n
&&
k
<
h
->
length
;
k
++
)
out
.
print
(
"%02X"
,
(
int
)
p
[
k
]);
j
=
r
.
arraySize
()
;
j
=
length
;
}
break
;
case
NdbDictionary
:
:
Column
::
Text
:
...
...
@@ -255,26 +336,26 @@ NdbOut& operator<<(NdbOut& out, const NdbRecAttr &r)
unsigned
n
=
r
.
arraySize
()
-
sizeof
(
*
h
);
for
(
unsigned
k
=
0
;
k
<
n
&&
k
<
h
->
length
;
k
++
)
out
.
print
(
"%c"
,
(
int
)
p
[
k
]);
j
=
r
.
arraySize
()
;
j
=
length
;
}
break
;
case
NdbDictionary
:
:
Column
::
Longvarchar
:
{
unsigned
len
=
uint2korr
(
r
.
aRef
());
ndbrecattr_print_string
(
out
,
"Longvarchar"
,
r
.
aRef
()
+
2
,
len
);
j
=
r
.
arraySize
()
;
j
=
length
;
}
break
;
default:
/* no print functions for the rest, just print type */
out
<<
(
int
)
r
.
getType
();
j
=
r
.
arraySize
()
;
j
=
length
;
if
(
j
>
1
)
out
<<
" "
<<
j
<<
" times"
;
break
;
}
}
if
(
r
.
arraySize
()
>
1
)
if
(
length
>
1
)
{
out
<<
"]"
;
}
...
...
ndb/test/include/NdbSchemaOp.hpp
View file @
dea5b47d
...
...
@@ -575,10 +575,6 @@ convertColumnTypeToAttrType(NdbDictionary::Column::Type _type)
case
NdbDictionary
:
:
Column
::
Binary
:
case
NdbDictionary
:
:
Column
::
Varbinary
:
return
String
;
case
NdbDictionary
:
:
Column
::
Datetime
:
case
NdbDictionary
:
:
Column
::
Date
:
case
NdbDictionary
:
:
Column
::
Time
:
case
NdbDictionary
:
:
Column
::
Undefined
:
default:
return
NoAttrTypeDef
;
}
...
...
sql/ha_innodb.cc
View file @
dea5b47d
...
...
@@ -5787,11 +5787,12 @@ ha_innobase::store_lock(
if
(
lock_type
!=
TL_IGNORE
&&
lock
.
type
==
TL_UNLOCK
)
{
/* If we are not doing a LOCK TABLE or DISCARD/IMPORT
TABLESPACE, then allow multiple writers */
TABLESPACE
or TRUNCATE TABLE
, then allow multiple writers */
if
((
lock_type
>=
TL_WRITE_CONCURRENT_INSERT
&&
lock_type
<=
TL_WRITE
)
&&
!
thd
->
in_lock_tables
&&
!
thd
->
tablespace_op
)
{
&&
!
thd
->
tablespace_op
&&
thd
->
lex
->
sql_command
!=
SQLCOM_TRUNCATE
)
{
lock_type
=
TL_WRITE_ALLOW_WRITE
;
}
...
...
sql/ha_ndbcluster.cc
View file @
dea5b47d
...
...
@@ -3472,14 +3472,14 @@ static int create_ndb_column(NDBCOL &col,
col
.
setLength
(
1
);
break
;
// Date types
case
MYSQL_TYPE_TIMESTAMP
:
col
.
setType
(
NDBCOL
::
Unsigned
);
col
.
setLength
(
1
);
break
;
case
MYSQL_TYPE_DATETIME
:
col
.
setType
(
NDBCOL
::
Datetime
);
col
.
setLength
(
1
);
break
;
case
MYSQL_TYPE_DATE
:
// ?
col
.
setType
(
NDBCOL
::
Char
);
col
.
setLength
(
field
->
pack_length
());
break
;
case
MYSQL_TYPE_NEWDATE
:
col
.
setType
(
NDBCOL
::
Date
);
col
.
setLength
(
1
);
...
...
@@ -3488,10 +3488,13 @@ static int create_ndb_column(NDBCOL &col,
col
.
setType
(
NDBCOL
::
Time
);
col
.
setLength
(
1
);
break
;
case
MYSQL_TYPE_DATE
:
// ?
case
MYSQL_TYPE_YEAR
:
col
.
setType
(
NDBCOL
::
Char
);
col
.
setLength
(
field
->
pack_length
());
case
MYSQL_TYPE_YEAR
:
col
.
setType
(
NDBCOL
::
Year
);
col
.
setLength
(
1
);
break
;
case
MYSQL_TYPE_TIMESTAMP
:
col
.
setType
(
NDBCOL
::
Timestamp
);
col
.
setLength
(
1
);
break
;
// Char types
case
MYSQL_TYPE_STRING
:
...
...
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