Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CiviCRM Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
CiviCRM Core
Commits
b4db5bb7
Commit
b4db5bb7
authored
3 years ago
by
akosgarai
Browse files
Options
Downloads
Patches
Plain Diff
#2645
Change column definition for preferred_mail_format field
A localized value for this field does not fit into the original varchar(8)
#2645
Update testcases
parent
31a216fe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CRM/Export/BAO/ExportProcessor.php
+10
-1
10 additions, 1 deletion
CRM/Export/BAO/ExportProcessor.php
tests/phpunit/CRM/Export/BAO/ExportTest.php
+2
-2
2 additions, 2 deletions
tests/phpunit/CRM/Export/BAO/ExportTest.php
with
12 additions
and
3 deletions
CRM/Export/BAO/ExportProcessor.php
+
10
−
1
View file @
b4db5bb7
...
...
@@ -1464,7 +1464,16 @@ class CRM_Export_BAO_ExportProcessor {
case
CRM_Utils_Type
::
T_STRING
:
if
(
isset
(
$fieldSpec
[
'maxlength'
]))
{
return
"`
$fieldName
` varchar(
{
$fieldSpec
[
'maxlength'
]
}
)"
;
// A localized string for the preferred_mail_format does not fit
// into the varchar(8) field.
// @see https://lab.civicrm.org/dev/core/-/issues/2645
switch
(
$fieldName
)
{
case
'preferred_mail_format'
:
return
"`
$fieldName
` varchar(16)"
;
default
:
return
"`
$fieldName
` varchar(
{
$fieldSpec
[
'maxlength'
]
}
)"
;
}
}
$dataType
=
$fieldSpec
[
'data_type'
]
??
''
;
// set the sql columns for custom data
...
...
This diff is collapsed.
Click to expand it.
tests/phpunit/CRM/Export/BAO/ExportTest.php
+
2
−
2
View file @
b4db5bb7
...
...
@@ -2555,7 +2555,7 @@ class CRM_Export_BAO_ExportTest extends CiviUnitTestCase {
'image_url'
=>
'`image_url` longtext'
,
'preferred_communication_method'
=>
'`preferred_communication_method` varchar(255)'
,
'preferred_language'
=>
'`preferred_language` varchar(5)'
,
'preferred_mail_format'
=>
'`preferred_mail_format` varchar(
8
)'
,
'preferred_mail_format'
=>
'`preferred_mail_format` varchar(
16
)'
,
'hash'
=>
'`hash` varchar(32)'
,
'contact_source'
=>
'`contact_source` varchar(255)'
,
'first_name'
=>
'`first_name` varchar(64)'
,
...
...
@@ -2743,7 +2743,7 @@ class CRM_Export_BAO_ExportTest extends CiviUnitTestCase {
'image_url'
=>
'`image_url` longtext'
,
'preferred_communication_method'
=>
'`preferred_communication_method` varchar(255)'
,
'preferred_language'
=>
'`preferred_language` varchar(5)'
,
'preferred_mail_format'
=>
'`preferred_mail_format` varchar(
8
)'
,
'preferred_mail_format'
=>
'`preferred_mail_format` varchar(
16
)'
,
'hash'
=>
'`hash` varchar(32)'
,
'contact_source'
=>
'`contact_source` varchar(255)'
,
'first_name'
=>
'`first_name` varchar(64)'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment