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
33cfbc78
Commit
33cfbc78
authored
Jan 03, 2003
by
venu@myvenu.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge work.mysql.com:/home/bk/mysql-4.1
into myvenu.com:/home/venu/bk/src-4.1
parents
f50abc44
df2678db
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2000 additions
and
548 deletions
+2000
-548
libmysql/libmysql.c
libmysql/libmysql.c
+347
-39
sql/field.cc
sql/field.cc
+1
-3
sql/protocol.cc
sql/protocol.cc
+14
-14
tests/client_test.c
tests/client_test.c
+1638
-492
No files found.
libmysql/libmysql.c
View file @
33cfbc78
This diff is collapsed.
Click to expand it.
sql/field.cc
View file @
33cfbc78
...
...
@@ -3256,9 +3256,7 @@ int Field_year::store(longlong nr)
bool
Field_year
::
send_binary
(
Protocol
*
protocol
)
{
ulonglong
tmp
=
Field_year
::
val_int
();
TIME
tm
;
tm
.
year
=
(
uint32
)
tmp
;
return
protocol
->
store_date
(
&
tm
);
return
protocol
->
store_short
(
tmp
);
}
double
Field_year
::
val_real
(
void
)
...
...
sql/protocol.cc
View file @
33cfbc78
...
...
@@ -852,7 +852,8 @@ bool Protocol_prep::store_short(longlong from)
{
#ifndef DEBUG_OFF
DBUG_ASSERT
(
field_types
==
0
||
field_types
[
field_pos
]
==
MYSQL_TYPE_SHORT
);
field_types
[
field_pos
]
==
MYSQL_TYPE_SHORT
||
field_types
[
field_pos
]
==
MYSQL_TYPE_YEAR
);
#endif
field_pos
++
;
char
*
to
=
packet
->
prep_append
(
2
,
PACKET_BUFFET_EXTRA_ALLOC
);
...
...
@@ -939,7 +940,6 @@ bool Protocol_prep::store(TIME *tm)
{
#ifndef DEBUG_OFF
DBUG_ASSERT
(
field_types
==
0
||
field_types
[
field_pos
]
==
MYSQL_TYPE_YEAR
||
field_types
[
field_pos
]
==
MYSQL_TYPE_DATETIME
||
field_types
[
field_pos
]
==
MYSQL_TYPE_DATE
||
field_types
[
field_pos
]
==
MYSQL_TYPE_TIMESTAMP
);
...
...
@@ -950,11 +950,11 @@ bool Protocol_prep::store(TIME *tm)
pos
=
buff
+
1
;
int2store
(
pos
,
tm
->
year
);
int2store
(
pos
+
2
,
tm
->
month
)
;
int2store
(
pos
+
3
,
tm
->
day
)
;
int2store
(
pos
+
4
,
tm
->
hour
)
;
int2store
(
pos
+
5
,
tm
->
minute
)
;
int2store
(
pos
+
6
,
tm
->
second
)
;
pos
[
2
]
=
(
uchar
)
tm
->
month
;
pos
[
3
]
=
(
uchar
)
tm
->
day
;
pos
[
4
]
=
(
uchar
)
tm
->
hour
;
pos
[
5
]
=
(
uchar
)
tm
->
minute
;
pos
[
6
]
=
(
uchar
)
tm
->
second
;
int4store
(
pos
+
7
,
tm
->
second_part
);
if
(
tm
->
second_part
)
length
=
11
;
...
...
@@ -987,15 +987,15 @@ bool Protocol_prep::store_time(TIME *tm)
field_pos
++
;
pos
=
buff
+
1
;
pos
[
0
]
=
tm
->
neg
?
1
:
0
;
int4store
(
pos
+
1
,
tm
->
day
);
int2store
(
pos
+
5
,
tm
->
hour
)
;
int2store
(
pos
+
7
,
tm
->
minute
)
;
int2store
(
pos
+
9
,
tm
->
second
)
;
int4store
(
pos
+
11
,
tm
->
second_part
);
int4store
(
pos
+
1
,
tm
->
day
);
pos
[
5
]
=
(
uchar
)
tm
->
hour
;
pos
[
6
]
=
(
uchar
)
tm
->
minute
;
pos
[
7
]
=
(
uchar
)
tm
->
second
;
int4store
(
pos
+
8
,
tm
->
second_part
);
if
(
tm
->
second_part
)
length
=
1
4
;
length
=
1
1
;
else
if
(
tm
->
hour
||
tm
->
minute
||
tm
->
second
||
tm
->
day
)
length
=
10
;
length
=
8
;
else
length
=
0
;
buff
[
0
]
=
(
char
)
length
;
// Length is stored first
...
...
tests/client_test.c
View file @
33cfbc78
This diff is collapsed.
Click to expand it.
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