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
1c1396f0
Commit
1c1396f0
authored
Oct 29, 2021
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '10.4' into 10.5
parents
a8ded395
e1083826
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
42 additions
and
22 deletions
+42
-22
extra/wolfssl/wolfssl
extra/wolfssl/wolfssl
+1
-1
sql/sql_cursor.h
sql/sql_cursor.h
+3
-1
sql/sql_prepare.h
sql/sql_prepare.h
+3
-1
sql/threadpool_generic.cc
sql/threadpool_generic.cc
+2
-2
storage/connect/colblk.h
storage/connect/colblk.h
+1
-1
storage/connect/mysql-test/connect/t/mongo.inc
storage/connect/mysql-test/connect/t/mongo.inc
+10
-2
storage/connect/odbconn.cpp
storage/connect/odbconn.cpp
+4
-5
storage/connect/tabbson.cpp
storage/connect/tabbson.cpp
+13
-8
storage/connect/tabbson.h
storage/connect/tabbson.h
+2
-0
storage/tokudb/PerconaFT/portability/toku_pthread.cc
storage/tokudb/PerconaFT/portability/toku_pthread.cc
+3
-1
No files found.
wolfssl
@
723ed009
Subproject commit
add4a68465bcdad238bcf3e5f2771d8da05e6285
Subproject commit
723ed009ae5dc68acc14cd7664f93503d64cd51d
sql/sql_cursor.h
View file @
1c1396f0
...
...
@@ -39,7 +39,7 @@ class JOIN;
its base class.
*/
class
Server_side_cursor
:
protected
Query_arena
,
public
Sql_alloc
class
Server_side_cursor
:
protected
Query_arena
{
protected:
/** Row destination used for fetch */
...
...
@@ -61,6 +61,8 @@ class Server_side_cursor: protected Query_arena, public Sql_alloc
}
virtual
~
Server_side_cursor
();
static
void
*
operator
new
(
size_t
size
,
MEM_ROOT
*
mem_root
)
{
return
alloc_root
(
mem_root
,
size
);
}
static
void
operator
delete
(
void
*
ptr
,
size_t
size
);
static
void
operator
delete
(
void
*
,
MEM_ROOT
*
){}
};
...
...
sql/sql_prepare.h
View file @
1c1396f0
...
...
@@ -115,7 +115,7 @@ class Ed_row;
automatic type conversion.
*/
class
Ed_result_set
:
public
Sql_alloc
class
Ed_result_set
{
public:
operator
List
<
Ed_row
>&
()
{
return
*
m_rows
;
}
...
...
@@ -129,6 +129,8 @@ class Ed_result_set: public Sql_alloc
size_t
get_field_count
()
const
{
return
m_column_count
;
}
static
void
*
operator
new
(
size_t
size
,
MEM_ROOT
*
mem_root
)
{
return
alloc_root
(
mem_root
,
size
);
}
static
void
operator
delete
(
void
*
ptr
,
size_t
size
)
throw
();
static
void
operator
delete
(
void
*
,
MEM_ROOT
*
){}
private:
...
...
sql/threadpool_generic.cc
View file @
1c1396f0
...
...
@@ -1757,9 +1757,9 @@ static void print_pool_blocked_message(bool max_threads_reached)
if
(
now
>
pool_block_start
+
BLOCK_MSG_DELAY
&&
!
msg_written
)
{
if
(
max_threads_reached
)
sql_print_
error
(
MAX_THREADS_REACHED_MSG
);
sql_print_
warning
(
MAX_THREADS_REACHED_MSG
);
else
sql_print_
error
(
CREATE_THREAD_ERROR_MSG
,
my_errno
);
sql_print_
warning
(
CREATE_THREAD_ERROR_MSG
,
my_errno
);
sql_print_information
(
"Threadpool has been blocked for %u seconds
\n
"
,
(
uint
)((
now
-
pool_block_start
)
/
1000000
));
...
...
storage/connect/colblk.h
View file @
1c1396f0
/*************** Colblk H Declares Source Code File (.H) ***************/
/* Name: COLBLK.H Version 1.7 */
/* */
/* (C) Copyright to the author Olivier BERTRAND 2005-201
5
*/
/* (C) Copyright to the author Olivier BERTRAND 2005-201
9
*/
/* */
/* This file contains the COLBLK and derived classes declares. */
/***********************************************************************/
...
...
storage/connect/mysql-test/connect/t/mongo.inc
View file @
1c1396f0
let
$MONGO
=
C
:/
Applic
/
MongoDB
/
Server
/
3.6
/
bin
/
mongo
;
let
$MONGOIMPORT
=
C
:/
Applic
/
MongoDB
/
Server
/
3.6
/
bin
/
mongoimport
;
#let $MONGO= C:/Applic/MongoDB/Server/3.6/bin/mongo;
#let $MONGOIMPORT= C:/Applic/MongoDB/Server/3.6/bin/mongoimport;
let
$MONGO
=
mongo
;
let
$MONGOIMPORT
=
mongoimport
;
storage/connect/odbconn.cpp
View file @
1c1396f0
/***********************************************************************/
/* Name: ODBCONN.CPP Version 2.
3
*/
/* Name: ODBCONN.CPP Version 2.
4
*/
/* */
/* (C) Copyright to the author Olivier BERTRAND 1998-20
17
*/
/* (C) Copyright to the author Olivier BERTRAND 1998-20
21
*/
/* */
/* This file contains the ODBC connection classes functions. */
/***********************************************************************/
...
...
@@ -1506,7 +1506,7 @@ int ODBConn::ExecDirectSQL(char *sql, ODBCCOL *tocols)
ThrowDBX
(
MSG
(
COL_NUM_MISM
));
// Now bind the column buffers
for
(
n
=
1
,
colp
=
tocols
;
colp
;
colp
=
(
PODBCCOL
)
colp
->
GetNext
())
for
(
colp
=
tocols
;
colp
;
colp
=
(
PODBCCOL
)
colp
->
GetNext
())
if
(
!
colp
->
IsSpecial
())
{
buffer
=
colp
->
GetBuffer
(
m_RowsetSize
);
len
=
colp
->
GetBuflen
();
...
...
@@ -1522,12 +1522,11 @@ int ODBConn::ExecDirectSQL(char *sql, ODBCCOL *tocols)
htrc
(
"Binding col=%u type=%d buf=%p len=%d slen=%p
\n
"
,
n
,
tp
,
buffer
,
len
,
colp
->
GetStrLen
());
rc
=
SQLBindCol
(
hstmt
,
n
,
tp
,
buffer
,
len
,
colp
->
GetStrLen
());
rc
=
SQLBindCol
(
hstmt
,
colp
->
GetIndex
()
,
tp
,
buffer
,
len
,
colp
->
GetStrLen
());
if
(
!
Check
(
rc
))
ThrowDBX
(
rc
,
"SQLBindCol"
,
hstmt
);
n
++
;
}
// endif pcol
}
catch
(
DBX
*
x
)
{
...
...
storage/connect/tabbson.cpp
View file @
1c1396f0
...
...
@@ -376,7 +376,7 @@ int BSONDISC::GetColumns(PGLOBAL g, PCSZ db, PCSZ dsn, PTOS topt)
}
// endswitch ReadDB
}
else
jsp
=
bp
->
Get
ArrayValue
(
bdp
,
i
);
jsp
=
bp
->
Get
Next
(
jsp
);
if
(
!
(
row
=
(
jsp
)
?
bp
->
GetObject
(
jsp
)
:
NULL
))
break
;
...
...
@@ -2187,7 +2187,9 @@ void BSONCOL::WriteColumn(PGLOBAL g)
TDBBSON
::
TDBBSON
(
PGLOBAL
g
,
PBDEF
tdp
,
PTXF
txfp
)
:
TDBBSN
(
g
,
tdp
,
txfp
)
{
Docp
=
NULL
;
Docrow
=
NULL
;
Multiple
=
tdp
->
Multiple
;
Docsize
=
0
;
Done
=
Changed
=
false
;
Bp
->
SetPretty
(
2
);
}
// end of TDBBSON standard constructor
...
...
@@ -2195,7 +2197,9 @@ TDBBSON::TDBBSON(PGLOBAL g, PBDEF tdp, PTXF txfp) : TDBBSN(g, tdp, txfp)
TDBBSON
::
TDBBSON
(
PBTDB
tdbp
)
:
TDBBSN
(
tdbp
)
{
Docp
=
tdbp
->
Docp
;
Docrow
=
tdbp
->
Docrow
;
Multiple
=
tdbp
->
Multiple
;
Docsize
=
tdbp
->
Docsize
;
Done
=
tdbp
->
Done
;
Changed
=
tdbp
->
Changed
;
}
// end of TDBBSON copy constructor
...
...
@@ -2376,6 +2380,7 @@ int TDBBSON::MakeDocument(PGLOBAL g)
}
// endif jsp
Docsize
=
Bp
->
GetSize
(
Docp
);
Done
=
true
;
return
RC_OK
;
}
// end of MakeDocument
...
...
@@ -2390,7 +2395,7 @@ int TDBBSON::Cardinality(PGLOBAL g)
else
if
(
Cardinal
<
0
)
{
if
(
!
Multiple
)
{
if
(
MakeDocument
(
g
)
==
RC_OK
)
Cardinal
=
Bp
->
GetSize
(
Docp
)
;
Cardinal
=
Docsize
;
}
else
return
10
;
...
...
@@ -2419,6 +2424,7 @@ void TDBBSON::ResetSize(void)
MaxSize
=
Cardinal
=
-
1
;
Fpos
=
-
1
;
N
=
0
;
Docrow
=
NULL
;
Done
=
false
;
}
// end of ResetSize
...
...
@@ -2477,6 +2483,7 @@ bool TDBBSON::SetRecpos(PGLOBAL, int recpos)
#endif // 0
Fpos
=
recpos
-
1
;
Docrow
=
NULL
;
return
false
;
}
// end of SetRecpos
...
...
@@ -2492,6 +2499,7 @@ bool TDBBSON::OpenDB(PGLOBAL g)
Fpos
=
-
1
;
NextSame
=
false
;
SameRow
=
0
;
Docrow
=
NULL
;
return
false
;
}
// endif use
...
...
@@ -2532,12 +2540,9 @@ int TDBBSON::ReadDB(PGLOBAL)
NextSame
=
false
;
M
++
;
rc
=
RC_OK
;
}
else
if
(
++
Fpos
<
(
signed
)
Bp
->
GetSize
(
Docp
))
{
Row
=
Bp
->
GetArrayValue
(
Docp
,
Fpos
);
if
(
Row
->
Type
==
TYPE_JVAL
)
Row
=
Bp
->
GetBson
(
Row
);
}
else
if
(
++
Fpos
<
Docsize
)
{
Docrow
=
(
Docrow
)
?
Bp
->
GetNext
(
Docrow
)
:
Bp
->
GetArrayValue
(
Docp
,
Fpos
);
Row
=
(
Docrow
->
Type
==
TYPE_JVAL
)
?
Bp
->
GetBson
(
Docrow
)
:
Docrow
;
SameRow
=
0
;
M
=
1
;
rc
=
RC_OK
;
...
...
storage/connect/tabbson.h
View file @
1c1396f0
...
...
@@ -318,7 +318,9 @@ class DllExport TDBBSON : public TDBBSN {
// Members
PBVAL
Docp
;
// The document array
PBVAL
Docrow
;
// Document row
int
Multiple
;
// 0: No 1: DIR 2: Section 3: filelist
int
Docsize
;
// The document size
bool
Done
;
// True when document parsing is done
bool
Changed
;
// After Update, Insert or Delete
};
// end of class TDBBSON
...
...
storage/tokudb/PerconaFT/portability/toku_pthread.cc
View file @
1c1396f0
...
...
@@ -55,7 +55,9 @@ Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved.
#include <toku_pthread.h>
int
toku_pthread_yield
(
void
)
{
#if defined(HAVE_PTHREAD_YIELD)
#if defined(HAVE_SCHED_YIELD)
return
sched_yield
();
#elif defined(HAVE_PTHREAD_YIELD)
# if defined(PTHREAD_YIELD_RETURNS_INT)
return
pthread_yield
();
# elif defined(PTHREAD_YIELD_RETURNS_VOID)
...
...
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