-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#13543] Add more pdo types #13562
Merged
Merged
[#13543] Add more pdo types #13562
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…e tests; Changed case in SQL file
This was referenced Oct 31, 2018
Closed
cc @sergeyklay Big one for you :) |
@niden Could you please rebase |
sergeyklay
reviewed
Nov 3, 2018
* 4.0.x: [PR12189] - Removed unused variables; Corrected missing use statement [PR12189] - Corrected typo [PR12189] - Minor changes based on review [PR12189] - Modified header class and corrected tests [PR12189] - Corrected logic and test [PR12189] - Fixed tests [PR12189] - Added test for hasHeader [PR12189] - Updated changelog [PR12189] - Added hasHeader method Minor CI's config refactor and improvements [#13547] - Updated changelog [#13547] - Corrected name of the method and tests [#13547] - Changed getTitle and added renderTitle
* 4.0.x: (33 commits) Updated stale to not close issues labelled as bugs Use latest Zephir Parser [#11608] - Removed unused variables [#11608] - Reverting instantiation of the client [#11608] - Removed '_' from variables and methods [#11608] - Refactoring on the connect to check if the object is already initialized/connected [#11608] - Refactoring of the getClient() [#11608] - Fixed tabs [#11608] - Corrections based on review [#10532] - Corrected variable [#10532] - Updated changelog [#10532] - Added case insensitive column map in model [#11608] - Corrected variable name [#11608] - Corrected costructor and changelog [#11608] - Updated the changelog [#11608] - Corrected tests [#11608] - Fixed typos [#11608] - More corrections [#11608] - Modifications to the class; Adjusted tests [#11608] - Changed the comparison for the key on save ...
* 4.0.x: (21 commits) Fixed broken view test AppVeyor use latest Zephir Use latest Zephir from the 0.10.x branch [skip appveyor] Fixes #13351: Numeric config properties merge correctly now fix issue 13351 merge config on non-zero-based numeric index Added method to check is a relationship is loaded Updated Changelog [ci skip] Fixed #12725: Numeric INI config now builds properly Fixed default PHP config filename [skip appveyor] Add code coverage support [skip appveyor] Add `Phalcon\Http\Response\Cookies::getCookies`. Add `Phalcon\Http\Response\Cookies::getCookies`. Fixed AppVeyor build [skip travis] Update build/test deps for AppVeyor Update build/test deps for Travis CI Update CHANGELOG-4.0.md add offset to query builder Add changelog entry. Remove name property from Service. Remove name property from Service. ...
cool |
sergeyklay
approved these changes
Dec 1, 2018
sergeyklay
added
new feature request
Planned Feature or New Feature Request
and removed
enhancement
Enhancement to the framework
labels
Dec 1, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello!
In raising this pull request, I confirm the following (please check boxes):
This PR consolidates issues and PRs. Types supported for MySQL:
TYPE_BIGINTEGER
TYPE_BIT
TYPE_BLOB
TYPE_BOOLEAN
TYPE_CHAR
TYPE_DATE
TYPE_DATETIME
TYPE_DECIMAL
TYPE_DOUBLE
TYPE_ENUM
TYPE_FLOAT
TYPE_INTEGER
TYPE_JSON
TYPE_JSONB
TYPE_LONGBLOB
TYPE_LONGTEXT
TYPE_MEDIUMBLOB
TYPE_MEDIUMINTEGER
TYPE_MEDIUMTEXT
TYPE_SMALLINTEGER
TYPE_TEXT
TYPE_TIME
TYPE_TIMESTAMP
TYPE_TINYBLOB
TYPE_TINYINTEGER
TYPE_TINYTEXT
TYPE_VARCHAR
Thanks