William Desportes
William Desportes
```sql CREATE TABLE t( x INT, start_timestamp TIMESTAMP(6) GENERATED ALWAYS AS ROW START, end_timestamp TIMESTAMP(6) GENERATED ALWAYS AS ROW END, PERIOD FOR SYSTEM_TIME(start_timestamp, end_timestamp) ) WITH SYSTEM VERSIONING; ``` https://mariadb.com/kb/en/library/system-versioned-tables/...
See: https://github.com/phpmyadmin/phpmyadmin/issues/16837 ```sql create table event( eventID varchar(10) not null, b char(30), c varchar(20), d TIME, e Date, f int, g char(70), h char(90), primary key(eventID) ) ``` is the...
``` NOTICE: PHP message: PHP Fatal error: Uncaught TypeError: implode() expects parameter 2 to be array, null given in vendor/phpmyadmin/sql-parser/src/Utils/Routine.php:123" Stack trace:" #0 vendor/phpmyadmin/sql-parser/src/Utils/Routine.php(123): implode(',', NULL)" #1 libraries/classes/Rte/RteList.php(304): PhpMyAdmin\SqlParser\Utils\Routine::getParameters(Object(PhpMyAdmin\SqlParser\Statements\CreateStatement))" #2...
While discovering the parser I started to wrongly add implementations, they never where pushed but here are some commit lines that pinpoint missing MariaDB commands - Add new "BACKUP {LOCK,UNLOCK}"...
- Add phpbench - improve a function that costs a lot on phpMyAdmin imports (pushed onto master as 79d5db8474a029539424f2e643b90a3858862b37) ## Todo - [ ] `composer phpbench/phpbench requires php 7.2`
# Execute ```sql START TRANSACTION; SELECT * FROM mytable WHERE id = 88777 FOR UPDATE; ``` ``` # 1064 - Erreur de syntaxe près de 'LIMIT 0, 25' à la...
```sql SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Custom error'; ```
```sql SELECT CONCAT('CHECKSUM TABLE ', GROUP_CONCAT(table_name), ';') AS statement FROM information_schema.tables WHERE table_schema = 'information_schema' INTO @command; ``` Gives a query syntax error because of `INTO @command` ### Error ```...
Replaces: #71 by @AppCarde In reply to https://github.com/phpmyadmin/themes/pull/64#issuecomment-1064132163
Hi! This lib seems great! I will have a try to replace symphony's on phpMyAdmin. Would it be possible that the phpdoc reader is removed from the vendor folder but...