[phpMyAdmin Git] [phpmyadmin/sql-parser] 724b23: Partial revert "Bump minimum version to PHP 7.1"

William Desportes williamdes at wdes.fr
Tue May 28 15:12:31 CEST 2019


Branch: refs/heads/QA
Home: https://github.com/phpmyadmin/sql-parser
Commit: 724b2330dc4cb6247aa1649cc1f49fce496f2e3c
https://github.com/phpmyadmin/sql-parser/commit/724b2330dc4cb6247aa1649cc1f49fce496f2e3c
Author: William Desportes <williamdes at wdes.fr>
Date: 2019-05-28 (Tue, 05 May 2019) +02:00

Changed paths: 
M .travis.yml
M composer.json
M phpunit.xml.dist

Log Message:
-----------
Partial revert "Bump minimum version to PHP 7.1"

This reverts commit 2941ff6b8b9c4d50362f3bc9bb79f086376c4acc.

Signed-off-by: William Desportes <williamdes at wdes.fr>

Commit: 5d5089a259d0195c4a1e4aa3588c31c839954067
https://github.com/phpmyadmin/sql-parser/commit/5d5089a259d0195c4a1e4aa3588c31c839954067
Author: William Desportes <williamdes at wdes.fr>
Date: 2019-05-28 (Tue, 05 May 2019) +02:00

Changed paths: 
M src/Component.php
M src/Components/AlterOperation.php
M src/Components/Array2d.php
M src/Components/ArrayObj.php
M src/Components/CaseExpression.php
M src/Components/Condition.php
M src/Components/CreateDefinition.php
M src/Components/DataType.php
M src/Components/Expression.php
M src/Components/ExpressionArray.php
M src/Components/FunctionCall.php
M src/Components/GroupKeyword.php
M src/Components/IndexHint.php
M src/Components/IntoKeyword.php
M src/Components/JoinKeyword.php
M src/Components/Key.php
M src/Components/Limit.php
M src/Components/LockExpression.php
M src/Components/OptionsArray.php
M src/Components/OrderKeyword.php
M src/Components/ParameterDefinition.php
M src/Components/PartitionDefinition.php
M src/Components/Reference.php
M src/Components/RenameOperation.php
M src/Components/SetOperation.php
M src/Components/UnionKeyword.php
M src/Context.php
M src/Core.php
M src/Parser.php
M src/Statement.php
M src/Statements/AlterStatement.php
M src/Statements/CreateStatement.php
M src/Statements/LockStatement.php
M src/Statements/NotImplementedStatement.php
M src/Statements/SelectStatement.php
M src/TokensList.php
M src/Utils/BufferedQuery.php
M src/Utils/Error.php
M src/Utils/Formatter.php
M src/Utils/Misc.php
M src/Utils/Query.php
M src/Utils/Routine.php
M src/Utils/Table.php
M src/Utils/Tokens.php
M tests/TestCase.php
M tests/Utils/BufferedQueryTest.php
M tests/Utils/FormatterTest.php
M tools/ContextGenerator.php
M tools/TestGenerator.php

Log Message:
-----------
Revert array syntax

See: 86c5baebda24c1721fb6881df8671a3c7df60e8b
Signed-off-by: William Desportes <williamdes at wdes.fr>

Commit: 930a860bc7f0684c45babd012070f88a9505d427
https://github.com/phpmyadmin/sql-parser/commit/930a860bc7f0684c45babd012070f88a9505d427
Author: William Desportes <williamdes at wdes.fr>
Date: 2019-05-28 (Tue, 05 May 2019) +02:00

Changed paths: 
M src/Components/AlterOperation.php
M src/Components/ArrayObj.php
M src/Components/CaseExpression.php
M src/Components/Condition.php
M src/Components/CreateDefinition.php
M src/Components/DataType.php
M src/Components/Expression.php
M src/Components/IntoKeyword.php
M src/Components/JoinKeyword.php
M src/Components/Key.php
M src/Components/LockExpression.php
M src/Components/OptionsArray.php
M src/Components/PartitionDefinition.php
M src/Components/Reference.php
M src/Components/RenameOperation.php
M src/Components/SetOperation.php
M src/Context.php
M src/Contexts/ContextMariaDb100000.php
M src/Contexts/ContextMariaDb100100.php
M src/Contexts/ContextMariaDb100200.php
M src/Contexts/ContextMariaDb100300.php
M src/Contexts/ContextMySql50000.php
M src/Contexts/ContextMySql50100.php
M src/Contexts/ContextMySql50500.php
M src/Contexts/ContextMySql50600.php
M src/Contexts/ContextMySql50700.php
M src/Contexts/ContextMySql80000.php
M src/Lexer.php
M src/Parser.php
M src/Statements/AlterStatement.php
M src/Statements/AnalyzeStatement.php
M src/Statements/BackupStatement.php
M src/Statements/CheckStatement.php
M src/Statements/ChecksumStatement.php
M src/Statements/CreateStatement.php
M src/Statements/DeleteStatement.php
M src/Statements/DropStatement.php
M src/Statements/InsertStatement.php
M src/Statements/LoadStatement.php
M src/Statements/OptimizeStatement.php
M src/Statements/PurgeStatement.php
M src/Statements/RepairStatement.php
M src/Statements/ReplaceStatement.php
M src/Statements/RestoreStatement.php
M src/Statements/SelectStatement.php
M src/Statements/SetStatement.php
M src/Statements/ShowStatement.php
M src/Statements/TransactionStatement.php
M src/Statements/TruncateStatement.php
M src/Statements/UpdateStatement.php
M src/Token.php
M src/Utils/BufferedQuery.php
M src/Utils/CLI.php
M src/Utils/Error.php
M src/Utils/Formatter.php
M src/Utils/Misc.php
M src/Utils/Query.php
M src/Utils/Routine.php
M src/Utils/Table.php
M tests/Builder/CreateStatementTest.php
M tests/Builder/InsertStatementTest.php
M tests/Components/Array2dTest.php
M tests/Components/ArrayObjTest.php
M tests/Components/ExpressionArrayTest.php
M tests/Components/ExpressionTest.php
M tests/Components/FunctionCallTest.php
M tests/Components/GroupKeywordTest.php
M tests/Components/JoinKeywordTest.php
M tests/Components/LimitTest.php
M tests/Components/LockExpressionTest.php
M tests/Components/OptionsArrayTest.php
M tests/Components/OrderKeywordTest.php
M tests/Components/ReferenceTest.php
M tests/Lexer/ContextTest.php
M tests/Lexer/LexerTest.php
M tests/Lexer/TokensListTest.php
M tests/Misc/BugsTest.php
M tests/Misc/ParameterTest.php
M tests/Misc/UtfStringTest.php
M tests/Parser/AlterStatementTest.php
M tests/Parser/CallStatementTest.php
M tests/Parser/CreateStatementTest.php
M tests/Parser/DeleteStatementTest.php
M tests/Parser/ExplainStatementTest.php
M tests/Parser/InsertStatementTest.php
M tests/Parser/LoadStatementTest.php
M tests/Parser/LockStatementTest.php
M tests/Parser/ParserTest.php
M tests/Parser/PurgeStatementTest.php
M tests/Parser/RenameStatementTest.php
M tests/Parser/ReplaceStatementTest.php
M tests/Parser/RestoreStatementTest.php
M tests/Parser/SelectStatementTest.php
M tests/Parser/SetStatementTest.php
M tests/Parser/TransactionStatementTest.php
M tests/Parser/UpdateStatementTest.php
M tests/TestCase.php
M tests/Utils/BufferedQueryTest.php
M tests/Utils/CLITest.php
M tests/Utils/ErrorTest.php
M tests/Utils/FormatterTest.php
M tests/Utils/MiscTest.php
M tests/Utils/QueryTest.php
M tests/Utils/RoutineTest.php
M tests/Utils/TableTest.php
M tests/Utils/TokensTest.php
M tools/ContextGenerator.php
M tools/TestGenerator.php

Log Message:
-----------
revert of new array syntax

See: 86c5baebda24c1721fb6881df8671a3c7df60e8b
Signed-off-by: William Desportes <williamdes at wdes.fr>



More information about the Git mailing list