summaryrefslogtreecommitdiff
path: root/mysql-test/suite/versioning/r/commit_id.result
Commit message (Collapse)AuthorAgeFilesLines
* Removed "<select expression> INTO <destination>" deprication.Monty2023-02-031-14/+0
| | | | | | | | | | | | | This was done after discussions with Igor, Sanja and Bar. The main reason for removing the deprication was to ensure that MariaDB is always backward compatible whenever possible. Other things: - Added statistics counters, mainly for the feedback plugin. - INTO OUTFILE - INTO variable - If INTO is using the old syntax (end of query)
* MDEV-11953: support of brackets in UNION/EXCEPT/INTERSECT operationsOleksandr Byelkin2018-07-041-0/+14
|
* MDEV-16010 Too many rows with AS OF point_in_the_past_or_NULLAleksey Midenkov2018-05-121-1/+1
|
* MDEV-15893 Rename VTQ to TRTEugene Kosov2018-05-121-25/+25
|
* MDEV-15001 no tests for system_versioning_innodb_algorithm_simpleAleksey Midenkov2018-02-241-4/+6
| | | | | | | | | | | Vers SQL: TRT fix getting TRX_ID by COMMIT_TS Fixed wrong assumption that records are ordered by COMMIT_TS. This is anyway a quick hack until tempesta-tech#314 is done. See also FIXME and TODO in TR_table::query(MYSQL_TIME, bool). Test: SEES case for trx_id.test [closes #456]
* SQL: removed VERS_HIDDEN_FLAG [closes #409]Aleksey Midenkov2017-12-191-2/+2
|
* Timestamp-based versioning for InnoDB [closes #209]Aleksey Midenkov2017-12-181-1/+5
| | | | | | | | | | | | | | | | | | | * Removed integer_fields check * Reworked Vers_parse_info::check_sys_fields() * Misc renames * versioned as vers_sys_type_t * Removed versioned_by_sql(), versioned_by_engine() versioned() works as before; versioned(VERS_TIMESTAMP) is versioned_by_sql(); versioned(VERS_TRX_ID) is versioned_by_engine(). * create_tmp_table() fix * Foreign constraints for timestamp-based * Range auto-specifier fix * SQL: 1-row partition rotation fix [fixes #260] * Fix 'drop system versioning, algorithm=inplace'
* Tests: removed common.inc from resultsAleksey Midenkov2017-12-041-82/+0
|
* IB, SQL: removed VTQ, added TRT on SQL layer [closes #305]Aleksey Midenkov2017-11-151-10/+13
|
* SQL: thd_start_utime() fix [fixes #284]Aleksey Midenkov2017-10-171-1/+2
|
* Tests: moved concat_execN() to common.incAleksey Midenkov2017-09-251-0/+14
|
* IB: long names in information_schemaAleksey Midenkov2017-07-041-21/+21
|
* Tests: VTQ iso_level check fixAleksey Midenkov2017-06-291-19/+25
|
* Tests: verify_vtq() fixAleksey Midenkov2017-05-051-2/+2
|
* Tests: split versioning.select into combinationsAleksey Midenkov2017-05-051-0/+49
|
* IB, SQL: (0.4) COMMIT_ID-based ordering of transactionsAleksey Midenkov2017-05-051-0/+103
IB: * removed CONCURR_TRX from VTQ; * new fields in VTQ: COMMIT_ID, ISO_LEVEL. SQL: * renamed BEGIN_TS, COMMIT_TS to VTQ_BEGIN_TS, VTQ_COMMIT_TS; * new functions: VTQ_COMMIT_ID, VTQ_ISO_LEVEL, VTQ_TRX_ID, VTQ_TRX_SEES, VTQ_TRX_SEES_EQ; * versioned SELECT for IB uses VTQ_TRX_SEES, VTQ_TRX_SEES_EQ. Closes #71