Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
oracle
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
oracle
Commits
7d90aed9
Unverified
Commit
7d90aed9
authored
3 years ago
by
Fabian Franz
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request
#1
from LionsAd/issue-3280572--increase-limit
Issue
#3280572
by Fabianx: Increase MAX LENGTH limit for Oracle 12.2
parents
3df387bf
f55f9803
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Connection.php
+2
-2
2 additions, 2 deletions
Connection.php
with
2 additions
and
2 deletions
Connection.php
+
2
−
2
View file @
7d90aed9
...
...
@@ -36,14 +36,14 @@ define('ORACLE_BLOB_PREFIX', 'B^#');
*
* Affects schema.inc table creation.
*/
define
(
'ORACLE_MAX_VARCHAR2_LENGTH'
,
1332
);
define
(
'ORACLE_MAX_VARCHAR2_LENGTH'
,
4000
);
/**
* Maximum length of a string that PDO_OCI can handle.
*
* Affects runtime blob creation.
*/
define
(
'ORACLE_MIN_PDO_BIND_LENGTH'
,
1332
);
define
(
'ORACLE_MIN_PDO_BIND_LENGTH'
,
4000
);
/**
* Alias used for queryRange filtering (we have to remove that from resultsets).
...
...
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