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
d6e4b6a9
Commit
d6e4b6a9
authored
May 06, 2003
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Varbinary should be string as default
scripts/make_win_src_distribution.sh: make sql_yacc.cpp portable
parent
4ac98ec5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
scripts/make_win_src_distribution.sh
scripts/make_win_src_distribution.sh
+6
-0
sql/item.h
sql/item.h
+1
-1
No files found.
scripts/make_win_src_distribution.sh
View file @
d6e4b6a9
...
@@ -258,6 +258,12 @@ do
...
@@ -258,6 +258,12 @@ do
fi
fi
done
done
#
# Fix some windows files
#
./extra/replace std::
""
--
$BASE
/sql/sql_yacc.cpp
#
#
# Initialize the initial data directory
# Initialize the initial data directory
#
#
...
...
sql/item.h
View file @
d6e4b6a9
...
@@ -456,7 +456,7 @@ class Item_varbinary :public Item
...
@@ -456,7 +456,7 @@ class Item_varbinary :public Item
longlong
val_int
();
longlong
val_int
();
String
*
val_str
(
String
*
)
{
return
&
str_value
;
}
String
*
val_str
(
String
*
)
{
return
&
str_value
;
}
int
save_in_field
(
Field
*
field
,
bool
no_conversions
);
int
save_in_field
(
Field
*
field
,
bool
no_conversions
);
enum
Item_result
result_type
()
const
{
return
INT
_RESULT
;
}
enum
Item_result
result_type
()
const
{
return
STRING
_RESULT
;
}
enum_field_types
field_type
()
const
{
return
MYSQL_TYPE_STRING
;
}
enum_field_types
field_type
()
const
{
return
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